services:
  ch01-checkpoint:
    image: python:3.11-slim
    container_name: ch01-data-engineering-checkpoint
    working_dir: /workspace
    volumes:
      - .:/workspace
    command: >
      sh -c "python /workspace/environment_summary.py && sleep 300"
