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