comparison bamboo-agent/Dockerfile @ 305:44f0c4e37a7c

trying to fix time zone issue
author aldrich@nwoca.org
date Thu, 27 Jun 2019 18:22:57 +0100
parents 7fcdf01e19eb
children 7352b7aa3784
comparison
equal deleted inserted replaced
304:c143f3f597d3 305:44f0c4e37a7c
34 34
35 && apt-get install -y unzip \ 35 && apt-get install -y unzip \
36 36
37 && apt-get install -y openjdk-8-jdk \ 37 && apt-get install -y openjdk-8-jdk \
38 38
39 && apt-get install -y zip 39 && apt-get install -y zip \
40
41 && apt-get install tzdata -y
42
43 RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime && \
44 dpkg-reconfigure -f noninteractive tzdata
45
40 46
41 ENV ANT_VERSION 1.10.5 47 ENV ANT_VERSION 1.10.5
42 RUN cd && \ 48 RUN cd && \
43 curl -fL -o apache-ant-bin.tar.gz http://www.us.apache.org/dist//ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz && \ 49 curl -fL -o apache-ant-bin.tar.gz http://www.us.apache.org/dist//ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz && \
44 tar -xzf apache-ant-bin.tar.gz && \ 50 tar -xzf apache-ant-bin.tar.gz && \