Create Dockerfile

This commit is contained in:
Matt DiMeglio 2025-06-10 17:28:53 -04:00 committed by GitHub
parent 85093355e3
commit d9627f8091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
web/Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
COPY package-lock.json ./
COPY . ./web
RUN npm ci
COPY . .
EXPOSE 8080
EXPOSE 5172
CMD ["npm", "run", "dev"]