mirror of
https://github.com/lanqian528/chat2api.git
synced 2026-06-13 21:02:46 +08:00
18 lines
274 B
Docker
18 lines
274 B
Docker
FROM python:3.11-slim as builder
|
|
|
|
WORKDIR /build
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
|
|
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 5005
|
|
|
|
CMD ["python", "chat2api.py"] |