20 lines
372 B
Plaintext
20 lines
372 B
Plaintext
FROM alpine:3.10
|
|
|
|
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/install-dependencies.sh /
|
|
RUN /install-dependencies.sh
|
|
RUN rm /install-dependencies.sh
|
|
|
|
ADD . /opt/openwebrx
|
|
|
|
WORKDIR /opt/openwebrx
|
|
|
|
VOLUME /etc/openwebrx
|
|
|
|
ENTRYPOINT [ "/opt/openwebrx/docker/scripts/run.sh" ]
|
|
EXPOSE 8073
|