File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN curl -L https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar
3131WORKDIR /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
3535RUN micromamba install -y -n base -f environment.yaml \
3636 && rm environment.yaml \
3737 && micromamba clean --all --yes
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM nvidia/cuda:11.2.2-base-ubuntu20.04
33LABEL maintainer="Hugging Face"
44
55ENV DEBIAN_FRONTEND=noninteractive
6+ ENV CONDA_OVERRIDE_CUDA="11.2"
67
78RUN 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
3334WORKDIR /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
3738RUN micromamba install -y -n base -f environment.yaml \
3839 && rm environment.yaml \
3940 && micromamba clean --all --yes
You can’t perform that action at this time.
0 commit comments