mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-02 23:00:16 +01:00
14 lines
198 B
Docker
14 lines
198 B
Docker
FROM raspbian/stretch
|
|
|
|
ADD docker/install-dependencies.sh /
|
|
RUN /install-dependencies.sh
|
|
|
|
ADD . /openwebrx
|
|
|
|
WORKDIR /openwebrx
|
|
|
|
VOLUME /config
|
|
|
|
ENTRYPOINT [ "/openwebrx/docker/run.sh" ]
|
|
EXPOSE 8073
|