Update Dockerfile

This commit is contained in:
Matt DiMeglio 2025-06-11 10:03:19 -04:00 committed by GitHub
parent 9be8ad6a98
commit 16f6080990
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
EXPOSE 8080
EXPOSE 5173
CMD ["npm", "run", "dev"]