FROM python:3-alpine

COPY entrypoint.py /app/entrypoint.py

WORKDIR /app

ENTRYPOINT ["python3", "/app/entrypoint.py"]