From 882f3f75ca9cfc0eb6694cb6fef0ce7a59e310e1 Mon Sep 17 00:00:00 2001 From: David Manouchehri Date: Wed, 6 Dec 2023 21:32:22 -0500 Subject: [PATCH] Update Dockerfile to preinstall Prisma CLI --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index fa1147c39..53ec25329 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,9 @@ COPY . /app RUN pip wheel --no-cache-dir --wheel-dir=wheels -r requirements.txt RUN pip install --no-cache-dir --find-links=wheels -r requirements.txt +# Trigger the Prisma CLI to be installed +RUN prisma -v + EXPOSE 4000/tcp # Start the litellm proxy, using the `litellm` cli command https://docs.litellm.ai/docs/simple_proxy