fix(frontend): Docker build

This commit is contained in:
Alex Wellnitz 2024-09-21 08:51:43 +02:00
parent d271e245a0
commit 1d3cf30c8e

View File

@ -2,7 +2,7 @@
# Frontend Build # Frontend Build
FROM node:lts AS build FROM node:lts AS build
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY frontend/package*.json ./
RUN npm install RUN npm install
COPY frontend/ . COPY frontend/ .
RUN npm run build RUN npm run build