blob: 5a8e9e0f190b7de55c96757ae712e30ab27bcf2f [file] [log] [blame]
Areli Fuss547839b2017-08-22 15:34:37 +03001FROM jetty:9.3-jre8
2
3ARG HTTP_PROXY
4ARG HTTPS_PROXY
5
6ENV HTTP_PROXY ${HTTP_PROXY}
7ENV HTTPS_PROXY ${HTTPS_PROXY}
8
9RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \
10 if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi
11
12RUN apt-get -y update && apt-get -y install \
13 apt-utils \
14 curl \
15 vim
16
17# install chef-solo
18RUN curl -L https://omnitruck.chef.io/install.sh | bash