added prod docker config

This commit is contained in:
subnub
2025-02-24 13:31:27 -05:00
parent f973ce3d3c
commit a5ec0ff0c2
6 changed files with 49 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:20
WORKDIR /usr/app-development
COPY package*.json ./
RUN npm install
COPY . .
# Default Ports
EXPOSE 8080
EXPOSE 3000
EXPOSE 5173
CMD [ "npm", "run", "dev"]