You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
486 B
15 lines
486 B
3 months ago
|
version: '3.4'
|
||
|
|
||
|
services:
|
||
|
dagitserverlessapplicationsasaservice:
|
||
|
image: dagitserverlessapplicationsasaservice
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./Dockerfile
|
||
|
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m flask run --no-debugger --no-reload --host 0.0.0.0 --port 5002"]
|
||
|
ports:
|
||
|
- 5002:5002
|
||
|
- 5678:5678
|
||
|
environment:
|
||
|
- FLASK_APP=controlplane/orchestrator.py
|