This commit is contained in:
Alexandr Tumaykin
2020-01-11 21:14:13 +03:00
commit a51ca08b10
6 changed files with 145 additions and 0 deletions

15
Dockerfile Executable file
View File

@@ -0,0 +1,15 @@
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" ]