rebuild docker containers with debian, stage 1: base

This commit is contained in:
Jakob Ketterl
2020-05-23 18:06:46 +02:00
parent 1299f5e9cc
commit cf4f1dce32
4 changed files with 67 additions and 265 deletions

View File

@ -1,17 +1,11 @@
FROM alpine:3.10
FROM debian:buster-slim
RUN apk add --no-cache bash
RUN ln -s /usr/local/lib /usr/local/lib64
ADD docker/scripts/direwolf-1.5.patch /
ADD docker/scripts/js8call-hamlib.patch /
ADD docker/scripts/install-dependencies.sh /
RUN /install-dependencies.sh && \
rm /install-dependencies.sh
WORKDIR /opt/openwebrx
VOLUME /etc/openwebrx
ENTRYPOINT [ "/opt/openwebrx/docker/scripts/run.sh" ]
ENTRYPOINT [ "/usr/bin/openwebrx" ]
EXPOSE 8073