We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e524ddb + 3787227 commit 8c1871fCopy full SHA for 8c1871f
.devcontainer/Dockerfile
@@ -1,10 +1,9 @@
1
-FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime
+FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
2
3
-RUN <<EOF
4
-apt-get update
5
-apt-get install -y --no-install-recommends git
6
-rm -rf /var/lib/apt/lists/*
7
-EOF
+RUN apt-get update && \
+ apt-get upgrade -y && \
+ apt-get install -y git && \
+ rm -rf /var/lib/apt/lists/*
8
9
COPY requirements.txt requirements.txt
10
0 commit comments