FROM python:3.11.8-alpine3.18 COPY ./app /app WORKDIR /app RUN pip3 install -r requirements.txt CMD ["python", "/app/main.py"]