Skip to content

Commit 7738238

Browse files
committed
fix TF
1 parent bfe1198 commit 7738238

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dockerfiles/tensorflow/cpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN curl -L https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar
3131
WORKDIR /app
3232

3333
# install base python dependencies
34-
COPY dockerfiles/pytorch/cpu/environment.yaml /app/environment.yaml
34+
COPY dockerfiles/tensorflow/cpu/environment.yaml /app/environment.yaml
3535
RUN micromamba install -y -n base -f environment.yaml \
3636
&& rm environment.yaml \
3737
&& micromamba clean --all --yes

dockerfiles/tensorflow/gpu/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM nvidia/cuda:11.2.2-base-ubuntu20.04
33
LABEL maintainer="Hugging Face"
44

55
ENV DEBIAN_FRONTEND=noninteractive
6+
ENV CONDA_OVERRIDE_CUDA="11.2"
67

78
RUN apt-get update \
89
&& apt-get -y upgrade --only-upgrade systemd openssl cryptsetup \
@@ -33,7 +34,7 @@ RUN curl -L https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar
3334
WORKDIR /app
3435

3536
# install base python dependencies
36-
COPY dockerfiles/pytorch/gpu/environment.yaml /app/environment.yaml
37+
COPY dockerfiles/tensorflow/gpu/environment.yaml /app/environment.yaml
3738
RUN micromamba install -y -n base -f environment.yaml \
3839
&& rm environment.yaml \
3940
&& micromamba clean --all --yes

0 commit comments

Comments
 (0)