loadbalancer / Dockerfile
npmaiecosystem's picture
Update Dockerfile
a4d6e8f verified
raw
history blame contribute delete
221 Bytes
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"]