Add installation of build dependencies in Dockerfile

This commit is contained in:
SergeantPanda 2025-09-28 11:36:59 -05:00
parent cd5135ba27
commit 836871f102

View file

@ -5,6 +5,10 @@ ARG BASE_TAG=base
# --- Build frontend ---
FROM node:24 AS frontend-builder
# Install dependencies for building frontend assets
RUN apt-get update && apt-get install -y make g++ build-essential
WORKDIR /app/frontend
COPY ./frontend /app/frontend