backup working config

This commit is contained in:
2026-06-24 16:25:20 +02:00
parent a51ca08b10
commit 1acdfb9179
3 changed files with 7 additions and 15 deletions

View File

@@ -1,15 +1,14 @@
ARG BUILD_FROM
ARG BUILD_FROM=homeassistant/amd64-base:latest
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/*
apk --no-cache --no-progress add jq openvpn
# Copy data for add-on
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]
ENTRYPOINT [ "/run.sh" ]