Initial commit
continuous-integration/drone/push Build is failing Details

Simon Bruder 2020-10-10 13:01:07 +02:00
commit e25ba99b23
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
3 changed files with 44 additions and 0 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: r.sbruder.de
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: r.sbruder.de/drone-nix-runner

23
Dockerfile Normal file
View File

@ -0,0 +1,23 @@
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
RUN apk add --no-cache \
git \
git-lfs \
rsync \
su-exec
COPY --from=drone-runner-exec /drone-runner-exec /usr/local/bin/
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
ENV DRONE_RUNNER_ENVIRON=NIX_PATH:nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs,NIX_STORE:/nix/store-ci
EXPOSE 3000

8
entrypoint.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
echo "Bootstrapping initial nix store…"
mkdir -p /nix/store-ci
chmod 1775 /nix/store-ci
chgrp nixbld /nix/store-ci
rsync -a /nix/store/./ /nix/store-ci
NIX_STORE=/nix/store-ci nix-daemon &
exec su-exec nobody:nogroup /usr/local/bin/drone-runner-exec