Skip to content

Commit 2293252

Browse files
committed
fix: updates docker prod
1 parent b17ce0a commit 2293252

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Dockerfile.prod

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ RUN yarn build
3737
FROM base AS runner
3838
WORKDIR /app
3939

40-
ENV NODE_ENV=production
40+
#ENV NODE_ENV production
41+
ENV NODE_ENV="production"
4142
# Uncomment the following line in case you want to disable telemetry during runtime.
4243
# ENV NEXT_TELEMETRY_DISABLED 1
4344

next.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
const nextConfig = {
33
reactStrictMode: true,
44
output: "standalone",
5-
eslint: {
6-
ignoreDuringBuilds: true,
7-
},
5+
// eslint: {
6+
// ignoreDuringBuilds: true,
7+
// },
88
};
99

1010
module.exports = nextConfig;

0 commit comments

Comments
 (0)