🧑‍💻(frontend) enable frontend service in docker compose

Added configuration to docker-compose stack allowing users to run the
frontend in production mode. This simplifies the developer onboarding,
for those wanting to run the project locally.
This commit is contained in:
lebaudantoine
2025-03-13 18:53:14 +01:00
committed by aleb_the_flash
parent 9eae98ed16
commit a8e1bbe085
3 changed files with 34 additions and 3 deletions

View File

@@ -29,6 +29,9 @@ FROM meet AS meet-builder
WORKDIR /home/frontend
ARG VITE_API_BASE_URL
ENV VITE_API_BASE_URL=${VITE_API_BASE_URL}
RUN npm run build
# ---- Front-end image ----