FROM python:3.11-rc-alpine
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "./scripts/main.py"]