blob: edf724fba84128f9c0c0a9f879dcff31cebb99f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM elasticsearch:2.4.6-alpine
RUN mkdir -p /var/chef/nodes
# Install Chef
RUN set -ex && \
apk add --no-cache \
linux-headers \
curl \
vim \
bash \
build-base \
ruby=2.5.7-r0 \
ruby-dev \
libffi-dev \
libxml2-dev && \
gem install chef:13.8.5 berkshelf:6.3.1 io-console:0.4.6 etc webrick --no-document && \
echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
apk update && \
apk add binutils curl libcurl libtasn1
|