Dockerfile package (#4517)

This commit is contained in:
Reece Browne 2025-09-26 20:56:26 +01:00 committed by GitHub
parent 43beadbdcb
commit 30987dcad2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ FROM node:20-alpine AS build
WORKDIR /app
# Copy package files
COPY frontend/package*.json ./
COPY frontend/package.json frontend/package-lock.json ./
# Install dependencies
RUN npm ci