Skip to content

Commit

Permalink
chore(docker): Update port of platform docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Jan 2, 2025
1 parent a9fc39e commit c79d886
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/platform/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/.next ./apps/pla
COPY --from=installer --chown=nextjs:nodejs /app/apps/platform/public ./apps/platform/public


ENV PORT=3025
ENV PORT=3000
ENV NEXT_SHARP_PATH=/app/apps/platform/.next/sharp
EXPOSE 3025
EXPOSE 3000
# keyshade-ignore
ENV HOSTNAME "0.0.0.0"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"docker:build:web": "docker build -t ks-web -f apps/web/Dockerfile .",
"docker:run:api": "docker run --env-file .env --name ks-api --rm -p 4200:4200 ks-api",
"docker:build:api": "docker build -t ks-api -f apps/api/Dockerfile .",
"docker:run:platform": "docker run --env-file .env --name ks-platform --rm -p 3025:3025 ks-platform",
"docker:run:platform": "docker run --env-file .env --name ks-platform --rm -p 3000:3000 ks-platform",
"docker:build:platform": "docker build -t ks-platform -f apps/platform/Dockerfile ."
},
"devDependencies": {
Expand Down

0 comments on commit c79d886

Please sign in to comment.