Timezone setup before apt-get tzdata

master
Grzegorz Adam Kowalski 2019-03-14 15:56:07 +01:00
parent dbbe98aaed
commit 7875c4492e
1 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,10 @@ FROM ubuntu:18.04
# Based on
# https://switch2osm.org/manually-building-a-tile-server-18-04-lts/
# Set up environment
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Install dependencies
RUN apt-get update && apt-get install -y \
apache2 \
@ -62,9 +66,7 @@ RUN apt-get update && apt-get install -y \
wget \
zlib1g-dev
# Set up environment and renderer user
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Set up renderer user
RUN adduser --disabled-password --gecos "" renderer
USER renderer