From 802887bde7625d0acd4145b45f1670b43b6106a4 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Thu, 14 Nov 2024 16:54:36 -0500 Subject: [PATCH] update Signed-off-by: Charlie Drage --- gameserver/Containerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/gameserver/Containerfile b/gameserver/Containerfile index ce635ff..f2d9d12 100644 --- a/gameserver/Containerfile +++ b/gameserver/Containerfile @@ -19,7 +19,6 @@ FROM node:16-alpine WORKDIR /app COPY . . RUN npm ci -RUN npm audit fix RUN npm run build #! Run Stage @@ -27,7 +26,6 @@ FROM node:16-alpine WORKDIR /app COPY --from=0 /app/package*.json ./ RUN npm ci --production --ignore-scripts -RUN npm audit fix COPY --from=0 /app/build ./ EXPOSE 3000