From a3675651898f050eaefce0a9c4e02890ddc57b57 Mon Sep 17 00:00:00 2001 From: Christina Ying Wang Date: Tue, 11 Apr 2023 13:04:36 -0700 Subject: [PATCH] Remove anonymous build volume from Dockerfile We don't need this anonymous volume as /data is bind mounted into the container from host (legacy), and will soon be mounted by the Supervisor itself on startup. Change-type: patch Signed-off-by: Christina Ying Wang --- Dockerfile.template | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.template b/Dockerfile.template index fed7f129..20d2dd20 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -206,7 +206,6 @@ COPY --from=build-prod /usr/src/app/node_modules ./node_modules COPY entry.sh . -VOLUME /data HEALTHCHECK --interval=5m --start-period=1m --timeout=30s --retries=3 \ CMD wget http://127.0.0.1:${LISTEN_PORT:-48484}/v1/healthy -O - -q