All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Lint Markdown files / markdown-lint (push) Successful in 6s
Release / push-amd64 (push) Successful in 25s
Release / push-arm64 (push) Successful in 1m47s
Release / push-manifest (push) Successful in 5s
Release / sync-to-hub-docker-io (push) Successful in 1m39s
20 lines
398 B
Docker
20 lines
398 B
Docker
FROM docker.io/library/alpine:3.22.0
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
git-lfs \
|
|
openssh \
|
|
perl \
|
|
sudo
|
|
|
|
ADD rootfs /
|
|
|
|
# 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
|
|
# RUN chmod -R 777 /home/drone
|
|
|
|
ENTRYPOINT ["/usr/local/bin/clone"] |