update env vars and deployments for containers

This commit is contained in:
2025-08-10 10:53:54 +01:00
parent 00c4c986ea
commit f400736df2
4 changed files with 159 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
# Multi-stage build for React TypeScript app
FROM node:18-alpine as build
# Accept build arguments
ARG REACT_APP_API_URL
ENV REACT_APP_API_URL=$REACT_APP_API_URL
# Set working directory
WORKDIR /app