You've already forked git-docker
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 5s
20 lines
398 B
Docker
20 lines
398 B
Docker
FROM docker.io/library/alpine:3.22.2
|
|
|
|
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"] |