File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1
1
FROM node:20-bullseye-slim
2
2
3
- WORKDIR /app
4
-
5
3
RUN addgroup --system --gid 1001 nodejs
6
4
RUN adduser --system --uid 1001 nextjs
7
- RUN chown -R nextjs:nodejs /app
8
- RUN chmod 775 /app
5
+
6
+ WORKDIR /app
9
7
10
8
COPY package*.json /app/
11
9
COPY node_modules /app/node_modules/
12
10
13
11
COPY .next /app/.next/
14
12
COPY public /app/public/
15
- COPY src /app/src/
16
13
17
14
COPY next.config.js .env /app/
18
15
COPY .serverDist /app/.serverDist/
19
- COPY tsconfig.json next-env.d.ts /app/
20
16
21
- USER nextjs:nodejs
17
+ USER nextjs
22
18
23
19
EXPOSE 3000
24
20
CMD ["npm" , "run" , "start" ]
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ const promMiddleware = promBundle({
19
19
} ) ;
20
20
21
21
const nextApp = next ( {
22
- dev : process . env . NODE_ENV === 'development' ,
22
+ dev :
23
+ process . env . NODE_ENV === 'development' &&
24
+ process . env . ENV === 'localhost' ,
23
25
quiet : process . env . ENV === 'prod' ,
24
26
} ) ;
25
27
You can’t perform that action at this time.
0 commit comments