Skip to content

Commit

Permalink
fix: docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mokto committed May 11, 2024
1 parent c1d0eb9 commit 5eec363
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim AS base
FROM node:20 AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
Expand All @@ -19,7 +19,7 @@ COPY --from=build /app/build /app/build

EXPOSE 3000
ENV NODE_ENV=production
ENV PORT 3000
ENV HOST 0.0.0.0
ENV PORT=3000
ENV HOST=0.0.0.0

CMD [ "node", "build" ]

0 comments on commit 5eec363

Please sign in to comment.