From b8c2f1b73b0d69912adf782b2e89a6c46f77098f Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Mon, 13 Nov 2023 13:33:05 -0800 Subject: [PATCH] Dockerfile: cleanups --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5b6d12df49..0fc2500c45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ +# Base FROM node:18-alpine AS base ENV NEXT_TELEMETRY_DISABLED 1 @@ -23,7 +24,6 @@ COPY . . # Build the application ENV NODE_ENV production -ENV APP_DOCKER_BUILD 1 RUN npm run build # Reduce installed packages to production-only @@ -53,4 +53,4 @@ USER nextjs EXPOSE 3000 # Start the application -CMD ["next", "start"] +CMD ["next", "start"] \ No newline at end of file