File size: 221 Bytes
4656f7b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install uvicorn
COPY . .
RUN chmod +x entrypoint.sh
EXPOSE 7860
ENTRYPOINT []
CMD ["/bin/bash", "entrypoint.sh"] |