feature-ner-keyword-detect #1

Merged
tigeren merged 35 commits from feature-ner-keyword-detect into main 2025-07-20 13:44:00 +00:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit 2947743d28 - Show all commits

View File

@ -12,7 +12,9 @@ RUN npm ci
# Copy source code
COPY . .
# Build the app
# Build the app with environment variables
ARG REACT_APP_API_BASE_URL
ENV REACT_APP_API_BASE_URL=$REACT_APP_API_BASE_URL
RUN npm run build
# Production stage

View File

@ -5,14 +5,15 @@ services:
build:
context: .
dockerfile: Dockerfile
args:
- REACT_APP_API_BASE_URL=${REACT_APP_API_BASE_URL}
ports:
- "80:80"
env_file:
- .env
environment:
- NODE_ENV=production
# Add your environment variables here
# - REACT_APP_API_URL=http://api.example.com
- REACT_APP_API_BASE_URL=${REACT_APP_API_BASE_URL}
restart: unless-stopped
networks:
- app-network