From 8df8bcf69a727997c755b8c672694502d422521d Mon Sep 17 00:00:00 2001 From: Mic Neale Date: Thu, 16 Nov 2023 17:26:04 +1100 Subject: [PATCH] this is pinning --- Dockerfile | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ee674d1..aa4ff6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app COPY . /app RUN pip install --no-cache-dir --upgrade pip && \ - pip install --no-cache-dir --user Flask Flask_cors PyYAML openai=0.28.1 waitress + pip install --no-cache-dir --user Flask Flask_cors PyYAML openai==0.28.1 waitress # Runtime stage FROM python:3.9-slim as runtime diff --git a/requirements.txt b/requirements.txt index b49d72d..f62051c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ Flask>1.0 Flask-cors PyYAML -openai=0.28.1 +openai waitress \ No newline at end of file