mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2025-04-19 07:52:02 +02: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"]
|