Updated Dockerfile and docker-compose
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-04-27 00:23:26 -04:00
parent 281d35d63a
commit 2bfec1640f
5 changed files with 28 additions and 108 deletions

View File

@@ -1,7 +1,11 @@
FROM node:18
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
EXPOSE 3069
CMD ["npm", "start"]