Dockerfile 101 B

1234567
  1. FROM python:3.9
  2. WORKDIR /app
  3. ADD . /app
  4. RUN python -m pip install -e .
  5. CMD weekly_report --version