openwebrx/Dockerfile

14 lines
198 B
Docker
Raw Normal View History

2019-01-13 15:12:09 +01:00
FROM raspbian/stretch
ADD docker/install-dependencies.sh /
RUN /install-dependencies.sh
ADD . /openwebrx
WORKDIR /openwebrx
2019-01-13 22:04:29 +01:00
VOLUME /config
ENTRYPOINT [ "/openwebrx/docker/run.sh" ]
2019-01-13 15:12:09 +01:00
EXPOSE 8073