File size: 350 Bytes
91494d5 331849c 91494d5 | 1 2 3 4 5 6 7 8 9 10 11 | FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
ARG DATE=$(date +%F)
RUN git clone https://github.com/snailyp/zai-proxy.git /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD uvicorn main:app --host 0.0.0.0 --port ${PORT:-7860} |