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