Update Dockerfile

This commit is contained in:
Matt DiMeglio 2025-06-11 09:44:59 -04:00 committed by GitHub
parent d92a993dfc
commit cb330c84b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,8 @@ FROM node:20-alpine
WORKDIR /app WORKDIR /app
COPY package*.json ./web
COPY package-lock.json ./web
COPY . ./web COPY . ./web
RUN npm ci RUN npm ci