From 81bc8e7e82b5f25fd3a7407f0fcf47cb27d15c09 Mon Sep 17 00:00:00 2001 From: swve Date: Mon, 10 Jun 2024 10:07:53 +0100 Subject: [PATCH] fix: pydantic issue https://stackoverflow.com/questions/78593700/langchain-community-langchain-packages-giving-error-missing-1-required-keywor --- Dockerfile | 2 +- apps/api/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b06d11ac..becd6359 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image -FROM python:3.12-slim-bookworm as base +FROM python:3.12.3-slim-bookworm as base # Install Nginx, curl, and build-essential RUN apt update && apt install -y nginx curl build-essential \ diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 5aa1d296..e385219f 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -1,5 +1,5 @@ # -FROM python:3.12 +FROM python:3.12.3 # poetry RUN pip install poetry