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

Correct timezone settings

parent ae584ef3
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 \
apt install wget curl git \
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