File size: 295 Bytes
81c5e81
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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