blob: 77f0da96662e9fc5effdb5e4042e69f41db2ff4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM openjdk:8-jdk-alpine
# Install Chef
RUN set -ex && \
echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
apk add --no-cache \
curl \
vim \
bash \
build-base \
ruby=2.5.5-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 && \
apk update && \
apk add binutils curl libcurl libtasn1
|