File tree Expand file tree Collapse file tree 3 files changed +31
-29
lines changed
Expand file tree Collapse file tree 3 files changed +31
-29
lines changed Original file line number Diff line number Diff line change 11FROM node:20.14 AS base
22
3- # Declare build arguments from docker-compose.local.yaml
4- ARG NODE_ENV
5- ARG BACKEND_DEV_HOST
3+ # Declare build arguments from docker-compose.local.yaml. Set default arguments
4+ ARG NODE_ENV=development
5+ ARG BACKEND_DEV_HOST=http://localhost:80/api
66
77RUN mkdir -p /home/vite/app
88RUN npm config set cache /tmp --global
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ version : " 3.9"
2+ services :
3+ frontend :
4+ container_name : nginx-frontend-app
5+ image : dssaregistry.azurecr.io/mymaestro:frontlatest
6+ restart : always
7+ build :
8+ context : .
9+ dockerfile : ./client/Dockerfile
10+ args :
11+ NODE_ENV : production
12+ env_file :
13+ - .env
14+ ports :
15+ - 80:80
16+ - 443:443
17+
18+ backend :
19+ container_name : node-app
20+ image : dssaregistry.azurecr.io/mymaestro:backlatest
21+ restart : always
22+ build :
23+ context : .
24+ dockerfile : ./server/Dockerfile
25+ env_file :
26+ - .env
27+ environment :
28+ - NODE_ENV=production
You can’t perform that action at this time.
0 commit comments