images/actions/act/Dockerfile aktualisiert
Some checks failed
CI / build_act (push) Successful in 1m20s
CI / build_java (17) (push) Failing after 1m23s
CI / build_java (1_8_0) (push) Failing after 1m23s
CI / build_php (8.1) (push) Failing after 1m31s
CI / build_java (21) (push) Failing after 1m24s
CI / build_php (8.2) (push) Failing after 1m39s

This commit is contained in:
Snoweuph 2024-04-26 22:11:59 +00:00
parent bdeabc7f8a
commit 7379f36535

View file

@ -1,19 +1,15 @@
FROM alpine:latest
RUN apk add --no-cache \
dracut sudo \
dracut sudo docker openrc \
git git-lfs wget curl \
zip unzip xz zstd \
nodejs python3 py3-pip
# Settting up User
RUN addgroup -S docker
RUN adduser -S runner -G docker
RUN adduser -S runner
RUN echo "runner ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/runner
RUN rc-update add docker boot
RUN mkdir /home/runner
RUN chown -R runner /home/runner
WORKDIR /home/runner
CMD ["/bin/bash"]