16 lines
278 B
Docker
Executable File
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" ]
|