blob: 4ec6ab0f63c11025f5fd5219bbaaafa8e151a896 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
FROM openjdk:8-jdk-alpine
# Install Chef
RUN set -ex && \
apk add --no-cache \
curl \
vim \
bash \
build-base \
ruby=2.5.8-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
|