Milestone3 / docker-compose.debug.yml
cdb24's picture
Docker Setup
81c5e81
raw
history blame
No virus
295 Bytes
version: '3.4'
services:
cs482project:
image: cs482project
build:
context: .
dockerfile: ./Dockerfile
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 hello.py "]
ports:
- 5678:5678