All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 4s
Release / push-amd64 (push) Successful in 1m30s
Release / push-arm64 (push) Successful in 1m42s
Release / push-manifest (push) Successful in 5s
Release / sync-to-hub-docker-io (push) Successful in 51s
20 lines
398 B
Docker
20 lines
398 B
Docker
FROM docker.io/library/alpine:3.21.3
|
|
|
|
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"] |