17 lines
253 B
Plaintext
Raw Normal View History

2019-01-22 12:52:03 +01:00
ARG BASE_IMAGE
FROM $BASE_IMAGE
2019-01-13 14:12:09 +00:00
RUN apk add --no-cache bash
ADD docker/scripts/install-dependencies.sh /
2019-01-13 14:12:09 +00:00
RUN /install-dependencies.sh
ADD . /openwebrx
WORKDIR /openwebrx
2019-01-13 21:04:29 +00:00
VOLUME /config
ENTRYPOINT [ "/openwebrx/docker/scripts/run.sh" ]
2019-01-13 14:12:09 +00:00
EXPOSE 8073