added dev docker file

This commit is contained in:
subnub
2025-02-24 11:29:21 -05:00
parent 28bcc44ea2
commit 11bed01c50
14 changed files with 48 additions and 47 deletions
+3 -4
View File
@@ -1,4 +1,4 @@
FROM node:13
FROM node:20
WORKDIR /usr/app
@@ -8,9 +8,8 @@ RUN npm install
COPY . .
RUN npm run build:docker
EXPOSE 8080
EXPOSE 3000
EXPOSE 5173
CMD [ "npm", "run", "start"]
CMD [ "npm", "run", "dev"]