Skip to content

Commit 10b90f7

Browse files
committed
Update pip and setuptools in docker builds
1 parent 83303f8 commit 10b90f7

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

web-apps/chat/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ ARG DIR=chat
44

55
COPY $DIR/requirements.txt requirements.txt
66
COPY utils utils
7+
RUN pip install --no-cache-dir --upgrade pip
8+
RUN pip install --no-cache-dir --upgrade setuptools
79
RUN pip install --no-cache-dir -r requirements.txt
810

911
COPY purge-google-fonts.sh purge-google-fonts.sh

web-apps/flux-image-gen/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
77
ARG DIR=flux-image-gen
88

99
COPY $DIR/requirements.txt requirements.txt
10+
RUN pip install --no-cache-dir --upgrade pip
11+
RUN pip install --no-cache-dir --upgrade setuptools
1012
RUN pip install --no-cache-dir -r requirements.txt
1113

1214
COPY purge-google-fonts.sh .

web-apps/image-analysis/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ ARG DIR=image-analysis
44

55
COPY $DIR/requirements.txt requirements.txt
66
COPY utils utils
7+
RUN pip install --no-cache-dir --upgrade pip
8+
RUN pip install --no-cache-dir --upgrade setuptools
79
RUN pip install --no-cache-dir -r requirements.txt
810

911
COPY purge-google-fonts.sh purge-google-fonts.sh

0 commit comments

Comments
 (0)