We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5caa703 commit 61f1276Copy full SHA for 61f1276
web-apps/chat/Dockerfile
@@ -1,10 +1,13 @@
1
-FROM python:3.11-slim
+# FROM python:3.11-slim
2
+FROM ghcr.io/astral-sh/uv:python3.11-bookworm-slim
3
4
ARG DIR=chat
5
6
COPY $DIR/requirements.txt requirements.txt
7
+RUN sed -i s$../utils$./utils$ requirements.txt
8
COPY utils utils
-RUN pip install --no-cache-dir -r requirements.txt
9
+# RUN pip install --no-cache-dir -r requirements.txt
10
+RUN uv pip install --system --no-cache-dir -r requirements.txt
11
12
COPY purge-google-fonts.sh purge-google-fonts.sh
13
RUN bash purge-google-fonts.sh
0 commit comments