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 81e6b91 commit 90b6139Copy full SHA for 90b6139
1 file changed
Dockerfile.gpu
@@ -7,6 +7,8 @@ ENV DEBIAN_FRONTEND=noninteractive
7
RUN apt-get update && \
8
apt-get install -y --no-install-recommends \
9
build-essential \
10
+ python3-full \
11
+ python3-pip \
12
&& \
13
apt-get clean && \
14
rm -rf /var/lib/apt/lists/*
@@ -16,8 +18,7 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
16
18
WORKDIR /opt/deeprank-gnn-esm
17
19
COPY . .
20
-RUN uv python install 3.11 && \
- uv pip install --system --python 3.11 .
21
+RUN uv pip install --system .
22
23
ENTRYPOINT ["deeprank-gnn-esm-predict"]
24
# ==============================================================================
0 commit comments