openwebrx-clone/Dockerfile

12 lines
168 B
Docker
Raw Normal View History

2019-01-13 14:12:09 +00:00
FROM raspbian/stretch
ADD docker/install-dependencies.sh /
RUN /install-dependencies.sh
ADD . /openwebrx
WORKDIR /openwebrx
2019-01-13 15:54:36 +00:00
CMD python2.7 openwebrx.py
2019-01-13 14:12:09 +00:00
EXPOSE 8073