openwebrx-clone/docker/Dockerfiles/Dockerfile-runds

13 lines
306 B
Plaintext
Raw Normal View History

2020-12-01 20:39:22 +00:00
ARG ARCHTAG
FROM openwebrx-base:$ARCHTAG
COPY docker/scripts/install-connectors.sh \
2021-02-03 02:21:09 +00:00
docker/scripts/install-dependencies-runds.sh /
2020-12-01 20:39:22 +00:00
RUN /install-connectors.sh &&\
rm /install-connectors.sh && \
2021-02-03 02:21:09 +00:00
/install-dependencies-runds.sh && \
rm /install-dependencies-runds.sh
2020-12-01 20:39:22 +00:00
COPY . /opt/openwebrx