add docker packaging

This commit is contained in:
Jakob Ketterl
2019-01-13 14:12:09 +00:00
parent 3e2c20b204
commit 27571bd63a
2 changed files with 63 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM raspbian/stretch
RUN apt-get update &&\
apt-get -y install sox libfftw3-dev python rtl-sdr netcat libitpp-dev libsndfile1-dev
ADD docker/install-dependencies.sh /
RUN /install-dependencies.sh
ADD . /openwebrx
WORKDIR /openwebrx
CMD python openwebrx.py
EXPOSE 8073