fix(frontend): Dockerfile for build

This commit is contained in:
Bernhard Müller 2026-07-27 12:57:38 +02:00
parent 3e33bb797a
commit 61968f7f82

View file

@ -6,6 +6,11 @@
# ---- Stage 1: Build Angular Frontend ----
FROM node:24-slim AS frontend-build
RUN apt-get update && apt-get install -y --no-install-recommends \
default-jre-headless \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app/eeg_frontend
COPY eeg_frontend/package.json eeg_frontend/package-lock.json* ./