FROM python:3.9 WORKDIR /app COPY . /app RUN pip install -r requirements.txt RUN chmod +x start.sh EXPOSE 8000 CMD ["bash", "start.sh"]