intial commit

This commit is contained in:
Smit901
2023-10-07 13:01:04 +05:30
parent 9bbd95c7dd
commit 031aceea0a
4 changed files with 28 additions and 3 deletions

8
Dockerfile Normal file
View File

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