File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Dockerfiles/linux-ubuntu22.04-x86_64_v2 Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN apt-get -yqq update && \
26
26
27
27
RUN mkdir spack && \
28
28
cd spack && \
29
- curl -Lfs https://github.com/spack/spack/archive/refs/heads/develop.tar.gz | tar -xzf - --strip-components=1 -C .
29
+ curl -Lfs https://github.com/spack/spack/archive/refs/heads/develop.tar.gz | tar -xzf - --strip-components=1 -C .
30
30
31
31
COPY spack.yaml /root/
32
32
COPY Dockerfiles/linux-ubuntu22.04-x86_64_v2/compilers.yaml Dockerfiles/linux-ubuntu22.04-x86_64_v2/packages.yaml /root/spack/etc/spack/
@@ -58,3 +58,7 @@ RUN apt-get -yqq update && \
58
58
gcc gfortran g++ \
59
59
libc-dev && \
60
60
rm -rf /var/lib/apt/lists/*
61
+
62
+ # TF requires /usr/bin/python3
63
+ # https://github.com/tensorflow/tensorflow/issues/62497
64
+ RUN ln -s $(command -v python3) /usr/bin/python3
You can’t perform that action at this time.
0 commit comments