adicionando dockerfile e mudança readme.

This commit is contained in:
xxxOv3rg1rl
2024-04-06 18:06:29 -03:00
parent b13a9f1409
commit 9adf69eca3
2 changed files with 55 additions and 3 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json .
RUN apk add --no-cache python3 g++ make
RUN yarn install --production
COPY . .
CMD ["node", "src/index.js"]
EXPOSE 3000