feat: update Dockerfile

This commit is contained in:
hanif salafi 2025-02-10 09:14:15 +07:00
parent 41cd503510
commit 229f6af8bf
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,9 @@ FROM node:23.5.0-alpine
ENV PORT 4000
# pnpm install globally
RUN npm install -g pnpm
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app