mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
21 lines
713 B
Docker
21 lines
713 B
Docker
FROM python:3.10-slim-bullseye as builder
|
|
|
|
# Tiktoken requires Rust toolchain, so build it in a separate stage
|
|
RUN apt-get update && apt-get install -y gcc curl
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && apt-get install --reinstall libc6-dev -y
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
RUN pip install --upgrade pip && pip install tiktoken==0.1.2
|
|
|
|
FROM python:3.10-slim-bullseye
|
|
# Copy pre-built packages from builder stage
|
|
COPY --from=builder /usr/local/lib/python3.10/site-packages/ /usr/local/lib/python3.10/site-packages/
|
|
WORKDIR /app
|
|
COPY . /app
|
|
ENV FLASK_APP=app.py
|
|
ENV FLASK_DEBUG=true
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 5001
|
|
|
|
CMD ["gunicorn", "-w", "6", "--bind", "0.0.0.0:5001", "wsgi:app"]
|