Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.runner
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ RUN go build -o runner
FROM alpine:3.21
WORKDIR /app
COPY --from=builder /src/runner/runner runner
RUN apk add --no-cache wireguard-tools iproute2 iputils curl git openssh fortune py3-uv python3 proxychains-ng jq file sshpass bind-tools grep chrony krb5
RUN apk add --no-cache tini wireguard-tools iproute2 iputils curl git openssh fortune py3-uv python3 proxychains-ng jq file sshpass bind-tools grep chrony krb5

# custom python check scripts
COPY custom-checks/requirements.txt /app
RUN ln -sf python3 /usr/bin/python
RUN uv pip install --system --break-system-packages setuptools
RUN uv pip install --system --break-system-packages -r /app/requirements.txt

ENTRYPOINT ["/app/runner"]
ENTRYPOINT ["/sbin/tini", "--", "/app/runner"]