use port 3000

This commit is contained in:
2025-01-22 03:02:52 +01:00
parent dbf51708a1
commit 775938ae53
2 changed files with 3 additions and 3 deletions

View File

@@ -7,8 +7,8 @@
"cpu": 0,
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000,
"containerPort": 80,
"hostPort": 80,
"protocol": "tcp"
}
],

View File

@@ -19,7 +19,7 @@ FROM oven/bun
WORKDIR /app
COPY --from=builder /app ./
EXPOSE 3000
EXPOSE 80
ENV NODE_ENV=production