blob: 75b8fe2218fff0924a112c11a9a5a460983c532f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
FROM python:2.7-alpine
ARG HTTP_PROXY
ARG HTTPS_PROXY
ENV HTTP_PROXY ${HTTP_PROXY}
ENV HTTPS_PROXY ${HTTPS_PROXY}
RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi
RUN if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi
# Install packages
RUN apk add --no-cache \
libcurl \
curl \
jq
# Install packages only needed for building
RUN apk add --no-cache --virtual .build-dependencies build-base curl-dev
# Needed for pycurl
ENV PYCURL_SSL_LIBRARY=openssl
# Pip stuff
RUN pip install influxdb pycurl requests
# Install Chef
RUN set -ex && \
apk add --no-cache bash build-base ruby ruby-dev libffi-dev libxml2-dev && \
gem install chef berkshelf io-console --no-document
|