Compare commits

...

No commits in common. "e25ba99b2345b9fa202a93bc30ae10673503d8bd" and "8be2a3be33da71f7f1491469969c6b9a3379259b" have entirely different histories.

1 changed files with 2 additions and 8 deletions

View File

@ -1,10 +1,3 @@
FROM alpine as drone-runner-exec
ARG DRONE_RUNNER_EXEC_VERSION=1.0.0-beta.9
RUN wget https://github.com/drone-runners/drone-runner-exec/releases/download/v${DRONE_RUNNER_EXEC_VERSION}/drone_runner_exec_linux_amd64.tar.gz \
&& tar xvf drone_runner_exec_linux_amd64.tar.gz
FROM nixos/nix
# installed from alpine to not pollute nix store
@ -14,7 +7,8 @@ RUN apk add --no-cache \
rsync \
su-exec
COPY --from=drone-runner-exec /drone-runner-exec /usr/local/bin/
ARG DRONE_RUNNER_EXEC_VERSION=1.0.0-beta.9
RUN wget -O- https://github.com/drone-runners/drone-runner-exec/releases/download/v${DRONE_RUNNER_EXEC_VERSION}/drone_runner_exec_linux_amd64.tar.gz | tar -C /usr/local/bin -xzvf-
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]