From da5246e12030494b2f960bdce3cdd94104533dc4 Mon Sep 17 00:00:00 2001 From: Shiranui Date: Sun, 19 Nov 2023 17:41:29 +0800 Subject: [PATCH] fix: add ca-certificates --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 201512e..6c4faf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM ubuntu:focal +RUN apt-get update +RUN apt-get install -y --no-install-recommends ca-certificates + RUN mkdir --parents --mode=0755 /etc/apt/keyrings RUN wget https://repo.radeon.com/rocm/rocm.gpg.key -O - | gpg --dearmor | tee /etc/apt/keyrings/rocm.gpg @@ -7,7 +10,7 @@ RUN echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/rocm.gpg] https://repo.rad RUN echo -e 'Package: *\nPin: release o=repo.radeon.com\nPin-Priority: 600' | tee /etc/apt/preferences.d/rocm-pin-600 RUN apt-get update -RUN apt-get install rocm-hip-libraries +RUN apt-get install -y --no-install-recommends rocm-hip-libraries RUN python -m venv /root/.uruha_python RUN /root/.uruha_python/bin/pip install ipython