-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
56 lines (52 loc) · 1.39 KB
/
Dockerfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
FROM --platform=linux/amd64 ubuntu:18.04
MAINTAINER Dennis J. Bell <[email protected]>
RUN apt-get update \
&& apt-get install -yy wget gnupg \
&& wget -q -O - https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/master/public.key | apt-key add - \
&& echo "deb http://apt.community.cloudfoundry.org stable main" | tee /etc/apt/sources.list.d/cloudfoundry-community.list \
&& wget -q -O - https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \
&& echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list \
&& apt-get update && apt-get install -yy \
aha \
autoconf \
bosh-cli \
build-essential \
bzip2 \
cf-cli \
cf6-cli \
credhub-cli \
curl \
file \
git \
gotcha \
jq \
kubectl \
libreadline7 \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libxml2-dev \
libxslt-dev \
libyaml-dev \
libyaml-perl \
lsof \
om \
openssl \
pivnet-cli \
ruby \
ruby-dev \
sipcalc \
safe \
spruce \
sqlite3 \
vault \
vim-common \
unzip \
zlib1g-dev \
zlibc \
&& rm -rf /var/lib/apt/lists/*
ARG GENESIS_VERSION
RUN curl -Lo /usr/bin/genesis https://github.com/genesis-community/genesis/releases/download/v$GENESIS_VERSION/genesis \
&& chmod 0755 /usr/bin/genesis
RUN genesis -v