FROM python:3.7

WORKDIR /fizzbuzz
COPY ./fizzbuzz.py /fizzbuzz/fizzbuzz.py

ENTRYPOINT ["python3", "fizzbuzz.py"]
CMD ["--help"]
