[docker] give an other chance to tzdata

This commit is contained in:
Gautier Hattenberger
2021-01-28 10:27:12 +01:00
parent 44984ce95d
commit 27b2cc7a7e
+5 -1
View File
@@ -14,10 +14,14 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y software
RUN add-apt-repository ppa:paparazzi-uav/ppa
RUN add-apt-repository ppa:team-gcc-arm-embedded/ppa
# setup tzdata
ENV TZ=Etc/UTC
RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install tzdata
# install paparazzi-dev which pull in the dependencies
# also install cross compiler and some stuff for X
RUN DEBIAN_FRONTEND=noninteractive \
TZ=Etc/UTC \
apt-get update && apt-get install -y \
cmake \
gcc-arm-embedded \