docker setup

This commit is contained in:
Nawel Bellil 2025-01-02 21:54:51 +01:00
parent f2d13b8483
commit d1b937b705

6
Dockerfile Normal file
View File

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