Skip to content

Commit 083427f

Browse files
committed
Update Dockerfile
1 parent a02358c commit 083427f

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

docker-compose.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
version: '3.8' # Specify a valid Compose file version
2-
31
services:
42
backend:
5-
image: api200/backend
3+
image: api200/backend:latest
64
ports:
75
- "8080:8080"
86
env_file:
@@ -16,7 +14,7 @@ services:
1614
condition: service_healthy
1715

1816
frontend:
19-
image: api200/frontend
17+
image: api200/frontend:latest
2018
ports:
2119
- "3000:3000"
2220
env_file:
@@ -243,4 +241,4 @@ services:
243241
]
244242

245243
volumes:
246-
db-config:
244+
db-config:

packages/dashboard/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ COPY . .
2222
# Uncomment the following line in case you want to disable telemetry during the build.
2323
# ENV NEXT_TELEMETRY_DISABLED=1
2424

25-
RUN corepack enable pnpm && pnpm run build
25+
RUN corepack enable pnpm && NEXT_DISABLE_ESLINT_DURING_BUILD=true pnpm run build
2626

2727
# Production image, copy all the files and run next
2828
FROM base AS runner

0 commit comments

Comments
 (0)