1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 00:18:09 +00:00
quot/app/Dockerfile

5 lines
94 B
Docker

FROM node:18.7.0-alpine
WORKDIR /app
COPY . /app
RUN npm ci --production
CMD ["npm", "start"]