git-docker/Dockerfile
Markus Pesch aa9b2df225
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
fix(ci): replace drone with gitea actions
2025-05-13 18:47:11 +02:00

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"]