ci(bazel): Fix docker localization

This commit is contained in:
Mizux Seiha
2020-04-29 09:57:30 +02:00
parent 3ff8f7e67f
commit 060983b9db

View File

@@ -2,6 +2,10 @@
# ref: https://hub.docker.com/_/ubuntu
FROM ubuntu:rolling AS env
LABEL maintainer="corentinl@google.com"
ENV TZ=Europe/Paris
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Install system build dependencies
RUN apt-get update -qq \
&& apt-get install -yq git wget curl libssl-dev build-essential \