2 Commits

Author SHA1 Message Date
397189647f Merge e8da7a4cff into f2d13b8483 2025-02-13 02:40:21 +00:00
e8da7a4cff dockerfile created 2025-02-13 00:54:12 +04:00

7
Dockerfile Normal file
View File

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