File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM alpine:3.1
22
33# install common packages
4- RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*
4+ RUN apk add --update-cache \
5+ curl \
6+ bash \
7+ sudo \
8+ coreutils \
9+ device-mapper \
10+ e2fsprogs \
11+ git \
12+ iptables \
13+ libudev \
14+ lxc \
15+ openssh \
16+ udev \
17+ util-linux \
18+ xz \
19+ && rm -rf /var/cache/apk/*
520
621# install etcdctl
722RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-deis/etcdctl-v0.4.9 \
@@ -11,21 +26,6 @@ RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/get-d
1126RUN curl -sSL -o /usr/local/bin/confd https://github.com/kelseyhightower/confd/releases/download/v0.10.0/confd-0.10.0-linux-amd64 \
1227 && chmod +x /usr/local/bin/confd
1328
14- RUN apk add --update-cache \
15- coreutils \
16- device-mapper \
17- e2fsprogs \
18- git \
19- iptables \
20- libudev \
21- lxc \
22- openssh \
23- udev \
24- util-linux \
25- xz \
26- && rm -rf /var/cache/apk/*
27-
28-
2929# configure ssh server
3030RUN mkdir -p /var/run/sshd && rm -rf /etc/ssh/ssh_host*
3131
You can’t perform that action at this time.
0 commit comments