openwebrx-clone/Dockerfile

14 lines
198 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 21:04:29 +00:00
VOLUME /config
ENTRYPOINT [ "/openwebrx/docker/run.sh" ]
2019-01-13 14:12:09 +00:00
EXPOSE 8073