Added timezone arguments to workspace build

This commit is contained in:
philtrep
2016-10-10 09:44:25 -04:00
parent 781f5ff972
commit fb26035e5c
3 changed files with 30 additions and 0 deletions

View File

@ -46,6 +46,14 @@ ARG PUID=1000
ARG PGID=1000
RUN groupadd -g $PGID laradock && \
useradd -u $PUID -g laradock -m laradock
#####################################
# Set Timezone
#####################################
ARG TZ=UTC
ENV TZ ${TZ}
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
#####################################
# Composer: