From 4590cc820991d8c423334ef42c19935ffbb649fe Mon Sep 17 00:00:00 2001 From: Maximilian Ernestus Date: Tue, 8 Aug 2023 14:38:49 +0200 Subject: [PATCH 1/2] Update base image of dockerfile and add openssh-client --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a190ca8..424df00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # base stage contains just binary dependencies. # This is used in the CI build. -FROM nvidia/cuda:10.0-runtime-ubuntu18.04 AS base +FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu20.04 AS base ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update -q \ @@ -9,6 +9,7 @@ RUN apt-get update -q \ curl \ ffmpeg \ git \ + openssh-client \ libgl1-mesa-dev \ libgl1-mesa-glx \ libglew-dev \ From 76d4d57bcf01e81dbdb6526f66b19472351c8489 Mon Sep 17 00:00:00 2001 From: Maximilian Ernestus Date: Tue, 8 Aug 2023 14:39:36 +0200 Subject: [PATCH 2/2] switch to alpha-version of the circle-ci image (reverst this before merge) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 20ec919..49c49b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ orbs: defaults: &defaults docker: - - image: humancompatibleai/seals:base + - image: humancompatibleai/seals:base-alpha auth: username: $DOCKERHUB_USERNAME password: $DOCKERHUB_PASSWORD