node-pt / Dockerfile
bardd's picture
next commit
ba1ea27
raw
history blame
130 Bytes
FROM node:16.13.1
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
CMD ["npm", "run", "start:prod"]