Skip to content

Commit

Permalink
FIX: docker build error for ludwig-gpu (#3658)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimthompson5802 authored Sep 23, 2023
1 parent ef2c14a commit 474d546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/ludwig-gpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# model serving
#

FROM pytorch/pytorch:2.0.0-cuda11.7-cudnn8-devel
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel

# https://forums.developer.nvidia.com/t/notice-cuda-linux-repository-key-rotation/212771
RUN sh -c 'echo "APT { Get { AllowUnauthenticated \"1\"; }; };" > /etc/apt/apt.conf.d/99allow_unauth' && \
Expand All @@ -21,7 +21,7 @@ RUN sh -c 'echo "APT { Get { AllowUnauthenticated \"1\"; }; };" > /etc/apt/apt.c
rm -f /etc/apt/sources.list.d/cuda.list /etc/apt/apt.conf.d/99allow_unauth cuda-keyring_1.0-1_all.deb && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A4B469963BF863CC F60F4B3D7FA2AF80

RUN apt-get -y update && apt-get -y install \
RUN apt-get -y update && DEBIAN_FRONTEND="noninteractive" apt-get -y install \
git \
libsndfile1 \
cmake \
Expand Down

0 comments on commit 474d546

Please sign in to comment.