modified: act-runners/fatboy/Dockerfile
/ build-docker-image (push) Successful in 2m54s

This commit is contained in:
Márcio Fernandes
2026-05-02 00:41:48 +00:00
parent e77d8cdfbf
commit 14a3d979ff
+3 -1
View File
@@ -6,6 +6,7 @@ ENV DEBIAN_FRONTEND=noninteractive
# Base dependencies
# ---------------------------------------------------------
RUN apt-get update && apt-get install -y \
tini \
curl \
wget \
jq \
@@ -61,4 +62,5 @@ RUN curl -L https://github.com/rootless-containers/rootlesskit/releases/download
# ---------------------------------------------------------
# Default entrypoint
# ---------------------------------------------------------
ENTRYPOINT ["/usr/local/bin/act_runner"]
ENTRYPOINT ["/sbin/tini", "--", "/usr/local/bin/act_runner"]
CMD ["daemon", "--config", "/etc/act_runner/config.yaml"]