Skip to content
Snippets Groups Projects
Commit 097fbe44 authored by EXT Soraya Arias's avatar EXT Soraya Arias
Browse files

Correct Timezone settings

parent 83538bba
No related branches found
No related tags found
No related merge requests found
......@@ -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 \
python3-venv \
python3-pip && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment