2 Commits

Author SHA1 Message Date
a433fc66ac Merge dad3e1179b into b13a9f1409 2024-02-28 14:15:19 +01:00
dad3e1179b Create docker file 2024-02-28 14:15:04 +01:00
2 changed files with 6 additions and 2 deletions

View File

@ -1,2 +0,0 @@
node_modules
Dockerfile

6
docker file Normal file
View File

@ -0,0 +1,6 @@
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000