Skip to content

Commit 6faa85b

Browse files
committed
Revert dockerfile
1 parent bf95434 commit 6faa85b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

Dockerfile

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
FROM node:20-bullseye-slim
22

3-
WORKDIR /app
4-
53
RUN addgroup --system --gid 1001 nodejs
64
RUN adduser --system --uid 1001 nextjs
7-
RUN chown -R nextjs:nodejs /app
8-
RUN chmod 775 /app
5+
6+
WORKDIR /app
97

108
COPY package*.json /app/
119
COPY node_modules /app/node_modules/
1210

1311
COPY .next /app/.next/
1412
COPY public /app/public/
15-
COPY src /app/src/
1613

1714
COPY next.config.js .env /app/
1815
COPY .serverDist /app/.serverDist/
19-
COPY tsconfig.json next-env.d.ts /app/
2016

21-
USER nextjs:nodejs
17+
USER nextjs
2218

2319
EXPOSE 3000
2420
CMD ["npm", "run", "start"]

server/server.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ const promMiddleware = promBundle({
1919
});
2020

2121
const nextApp = next({
22-
dev: process.env.NODE_ENV === 'development',
22+
dev:
23+
process.env.NODE_ENV === 'development' &&
24+
process.env.ENV === 'localhost',
2325
quiet: process.env.ENV === 'prod',
2426
});
2527

0 commit comments

Comments
 (0)