feat: Dockerfile + workflow

This commit is contained in:
Nard Theo
2024-05-20 12:03:56 +02:00
parent 90076146b4
commit f77e64e31a
3 changed files with 74 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:22.2.0
WORKDIR /app
COPY package.json /app/package.json
# COPY package-lock.json /app/package-lock.json
RUN npm install
COPY . /app
CMD ["npm", "start"]