zed2api / Dockerfile
smgc's picture
Update Dockerfile
06f3c8f verified
raw
history blame
517 Bytes
FROM python:3.9-slim
RUN apt-get update && apt-get install -y --no-install-recommends tzdata git && \
rm -rf /var/lib/apt/lists/*
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
RUN git clone https://github.com/cnbeining/Zed2API.git .
RUN sed -i'' 's|app.route('/chat|app.route('/ai/v1/chat|g' /app/app.py
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "app:asgi_app", "--host", "0.0.0.0", "--port", "8000"]