Files
ha-openvpn-client/Dockerfile
Alexandr Tumaykin a51ca08b10 init
2020-01-11 21:14:13 +03:00

16 lines
278 B
Docker
Executable File

ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Install requirements for add-on
RUN apk --no-cache --no-progress upgrade && \
apk --no-cache --no-progress add jq openvpn \
rm -rf /tmp/*
# Copy data for add-on
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]