From 087b0d3397e4d4e33818495789c046639f543760 Mon Sep 17 00:00:00 2001 From: alexn707 Date: Fri, 28 Feb 2025 10:41:44 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8654d85c..fe7c1c78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,13 +10,13 @@ RUN npm ci --omit=dev &&\ # Copy build result to a new image. # This saves a lot of disk space. -FROM amneziavpn/amnezia-wg:latest +FROM docker.io/library/node:lts-alpine HEALTHCHECK CMD /usr/bin/timeout 5s /bin/sh -c "/usr/bin/wg show | /bin/grep -q interface || exit 1" --interval=1m --timeout=5s --retries=3 COPY --from=build_node_modules /app /app # Copy build result to a new image. # This saves a lot of disk space. -FROM docker.io/library/node:lts-alpine +FROM amneziavpn/amnezia-wg:latest HEALTHCHECK CMD /usr/bin/timeout 5s /bin/sh -c "/usr/bin/wg show | /bin/grep -q interface || exit 1" --interval=1m --timeout=5s --retries=3 COPY --from=build_node_modules /app /app