mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
7 lines
175 B
Docker
7 lines
175 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get -y install tzdata python
|
|
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|