diff --git a/docker/fidle_python_pip.dockerfile b/docker/fidle_python_pip.dockerfile index d5356a58f4cf9fe31f095c938f3ff8bf412914fd..6099b4669efd69f798f96965ac69a06e3fbb55ca 100644 --- a/docker/fidle_python_pip.dockerfile +++ b/docker/fidle_python_pip.dockerfile @@ -7,9 +7,10 @@ FROM ${docker_image_base} LABEL maintainer=soraya.arias@inria.fr # Ensure a sane environment -ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive +ENV TZ=Europe/Paris LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive -RUN apt update --fix-missing && \ +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ + apt update --fix-missing && \ apt install -y --no-install-recommends apt-utils \ apt install wget curl git \ python3-venv python3-pip && \