FROM python:3.9-alpine
WORKDIR /app
ADD requirements.txt .
RUN pip3 install -r requirements.txt
ADD logic.py .
ENTRYPOINT ["python3", "logic.py"]
