Skip to content

Commit 8c1871f

Browse files
authored
Merge pull request #65 from d-kleine/main
Updated Dockerfile
2 parents e524ddb + 3787227 commit 8c1871f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.devcontainer/Dockerfile

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime
1+
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
22

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
3+
RUN apt-get update && \
4+
apt-get upgrade -y && \
5+
apt-get install -y git && \
6+
rm -rf /var/lib/apt/lists/*
87

98
COPY requirements.txt requirements.txt
109

0 commit comments

Comments
 (0)