fix: Revert Dockerfile edits and lockfile changes

This reverts commits 8409b71857 and 78eb2b183e
This commit is contained in:
tigattack
2025-09-29 21:53:13 +01:00
parent 12a82a8522
commit d626493100
5 changed files with 11908 additions and 2643 deletions

View File

@@ -2,19 +2,14 @@ FROM node:lts-alpine AS builder
WORKDIR /app
# Copy frontend package files
COPY package*.json ./
COPY frontend/package*.json ./frontend/
WORKDIR /app/frontend
# Install frontend dependencies (now has its own package-lock.json)
RUN npm ci --ignore-scripts
# Copy frontend source after dependencies are installed
COPY frontend/ ./
COPY frontend/ ./frontend/
# Build the frontend
RUN npm run build
RUN npm run build:frontend
FROM nginxinc/nginx-unprivileged:alpine