This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/docker/Dockerfile.linux.arm64
Udo Waechter bd2ef384f7
Some checks reported errors
continuous-integration/drone Build was killed
updated to run in podman pipeline
2023-11-15 13:12:26 +01:00

20 lines
575 B
Docker

FROM alpine as alpine
RUN apk add -U --no-cache ca-certificates
RUN apk add bash mount psutils
RUN wget https://github.com/tmate-io/tmate/releases/download/2.4.0/tmate-2.4.0-static-linux-arm64v8.tar.xz
RUN tar -xf tmate-2.4.0-static-linux-arm64v8.tar.xz
RUN mv tmate-2.4.0-static-linux-arm64v8/tmate /bin/
RUN chmod +x /bin/tmate
EXPOSE 3000
ENV GODEBUG netdns=go
ENV DRONE_PLATFORM_OS linux
ENV DRONE_PLATFORM_ARCH arm64
LABEL com.centurylinklabs.watchtower.stop-signal="SIGINT"
ADD release/linux/arm64/drone-runner-podman /bin/
ENTRYPOINT ["/bin/drone-runner-podman"]