This reverts commit d443e880d5.
While the pipeline is still running, labsync generator can't retrieve
its result as it is not yet marked as successfully finished.
Therefore, it is easier to use a webhook instead
18 lines
323 B
Docker
18 lines
323 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/community" >> /etc/apk/repositories \
|
|
&& apk add --no-cache \
|
|
packer
|
|
|
|
WORKDIR /workdir
|