mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2025-01-08 20:31:31 +01:00
13 lines
119 B
Docker
13 lines
119 B
Docker
FROM node:16-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 4000
|
|
|
|
CMD ["npm", "start"]
|