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

6 lines
94 B
Text
Raw Normal View History

2022-08-23 09:01:47 +09:00
FROM node:18.7.0-alpine
WORKDIR /app
COPY . /app
RUN npm ci --production
CMD ["npm", "start"]