From 8249f3598a461318f83e12291c9c802a8695a3e0 Mon Sep 17 00:00:00 2001 From: Jonas Eppelt <jonas.eppelt@kit.edu> Date: Sun, 1 Oct 2023 12:52:44 +0000 Subject: [PATCH] testing another bugfix --- basis/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/basis/Dockerfile b/basis/Dockerfile index f6daed8..bc89efa 100755 --- a/basis/Dockerfile +++ b/basis/Dockerfile @@ -5,10 +5,12 @@ LABEL maintainer "Eppelt, Jonas jonas.eppelt@kit.edu" USER root ### fixing timezone issues and make sure certificate lists are up to date -RUN apt-get update && apt-get install -y tzdata +RUN apt-get update && apt-get install -y tzdata ENV TZ=Europe/Berlin RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone +RUN apt-get install --reinstall ca-certificates + ### adding github as trusted certificate RUN openssl s_client -showcerts -servername github.com -connect github.com:443 </dev/null 2>/dev/null | \ sed -n -e '/BEGIN\ CERTIFICATE/,/END\ CERTIFICATE/ p' > github-com.pem && \ -- GitLab