mirror of
https://github.com/kou029w/quot.git
synced 2025-01-19 08:28:09 +00:00
6 lines
94 B
Text
6 lines
94 B
Text
|
FROM node:18.7.0-alpine
|
||
|
WORKDIR /app
|
||
|
COPY . /app
|
||
|
RUN npm ci --production
|
||
|
CMD ["npm", "start"]
|