From bd1c9c28187ce184ec65e0bda60d52e99878645c Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 25 Feb 2023 19:20:09 +0000 Subject: [PATCH] gunicorn --- application/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/Dockerfile b/application/Dockerfile index a37a3bed..d78aef1d 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim-bullseye as builder +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 @@ -6,13 +6,13 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && apt-get install --reinstall ENV PATH="/root/.cargo/bin:${PATH}" RUN pip install --upgrade pip && pip install tiktoken==0.1.2 -FROM python:3.11-slim-bullseye +FROM python:3.10-slim-bullseye # Copy pre-built packages from builder stage -COPY --from=builder /usr/local/lib/python3.11/site-packages/ /usr/local/lib/python3.11/site-packages/ +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_ENV=development +ENV FLASK_DEBUG=true RUN pip install -r requirements.txt EXPOSE 5000