9 lines
293 B
Docker
9 lines
293 B
Docker
FROM alpine:3.12
|
|
RUN apk add --no-cache ca-certificates git git-lfs openssh curl perl aws-cli sudo
|
|
|
|
ADD posix/* /usr/local/bin/
|
|
RUN adduser -g Drone -s /bin/sh -D -u 1000 drone
|
|
RUN echo 'drone ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/drone
|
|
USER drone:drone
|
|
|
|
ENTRYPOINT ["/usr/local/bin/clone"] |