Fixed Dockerfile

This commit is contained in:
Eric Gullickson
2025-08-23 10:34:21 -05:00
parent 1053b8a2e1
commit ac97d03c78
2 changed files with 4 additions and 4 deletions

View File

@@ -7,8 +7,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Install all dependencies (needed for build)
RUN npm install
# Copy source code
COPY . .

View File

@@ -7,8 +7,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install production dependencies
RUN npm ci --only=production
# Install all dependencies (needed for build)
RUN npm install
# Copy source code
COPY . .