FROM python:latest

WORKDIR /app

COPY app.py /app/

CMD ["python", "app.py"]