mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 02:00:13 +01:00
14 lines
309 B
Docker
14 lines
309 B
Docker
ARG NIX_TAG="latest"
|
|
|
|
FROM nixos/nix:$NIX_TAG
|
|
|
|
RUN nix-env -iA nixpkgs.bashInteractive
|
|
|
|
COPY entrypoint.sh /usr/local/bin/
|
|
COPY nix.conf /etc/nix/nix.conf
|
|
COPY nix.conf /root/.config/nix/nix.conf
|
|
|
|
VOLUME "/mnt/nix/daemon-socket"
|
|
VOLUME "/mnt/nix/store"
|
|
|
|
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"]
|