File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
- version : ' 3.8' # Specify a valid Compose file version
2
-
3
1
services :
4
2
backend :
5
- image : api200/backend
3
+ image : api200/backend:latest
6
4
ports :
7
5
- " 8080:8080"
8
6
env_file :
@@ -16,7 +14,7 @@ services:
16
14
condition : service_healthy
17
15
18
16
frontend :
19
- image : api200/frontend
17
+ image : api200/frontend:latest
20
18
ports :
21
19
- " 3000:3000"
22
20
env_file :
@@ -243,4 +241,4 @@ services:
243
241
]
244
242
245
243
volumes :
246
- db-config:
244
+ db-config :
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ COPY . .
22
22
# Uncomment the following line in case you want to disable telemetry during the build.
23
23
# ENV NEXT_TELEMETRY_DISABLED=1
24
24
25
- RUN corepack enable pnpm && pnpm run build
25
+ RUN corepack enable pnpm && NEXT_DISABLE_ESLINT_DURING_BUILD=true pnpm run build
26
26
27
27
# Production image, copy all the files and run next
28
28
FROM base AS runner
You can’t perform that action at this time.
0 commit comments