better-auth-test / Dockerfile
coyotte508
damn vite x2
3750b15
raw
history blame contribute delete
173 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 ["node", "build/index.js"]