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