Skip to content
Snippets Groups Projects
Commit 8249f359 authored by Jonas Eppelt's avatar Jonas Eppelt
Browse files

testing another bugfix

parent ea5456c1
No related branches found
No related tags found
No related merge requests found
......@@ -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 && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment