Dockerfile updates
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-12-03 22:31:49 -05:00
parent df8b93c6a6
commit 8572ecf635
2 changed files with 4 additions and 4 deletions

View File

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