FROM python:3.11 RUN apt-get update && apt-get install -y git WORKDIR /app COPY startup.sh . RUN chmod +x startup.sh CMD ["bash", "startup.sh"]