better-auth-test / Dockerfile
coyotte508
better command
0515a8e
raw
history blame
184 Bytes
FROM node:latest
WORKDIR /app
COPY . .
RUN npm install -g pnpm && pnpm install
EXPOSE 3000
# RUN chown -R 1000:1000 /app
RUN pnpm build
CMD ["pnpm", "preview", "--port", "3000"]