labsync/builder/Dockerfile

20 lines
351 B
Docker

FROM docker
RUN apk add --no-cache \
ansible \
aws-cli \
ca-certificates \
coreutils \
libffi \
mktorrent \
openssh-client \
openssl \
rsync \
squashfs-tools \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk add --no-cache \
packer
WORKDIR /workdir
# vim: ts=4 sw=4 sts=4 noet: