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 4b27c82 commit 61c19f4Copy full SHA for 61c19f4
packages/postgres-database/scripts/erd/Dockerfile
@@ -20,15 +20,14 @@ RUN apt-get update \
20
&& apt-get clean
21
22
23
-RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
24
- pip install --upgrade \
25
- pip~=24.0 \
+RUN --mount=type=cache,target=/root/.cache/uv \
+ uv pip install --upgrade \
26
wheel \
27
setuptools
28
29
30
# devenv
31
COPY requirements.txt requirements.txt
32
33
- pip install \
34
- -r requirements.txt
+ uv pip sync \
+ requirements.txt
0 commit comments