mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 18:20:07 +01:00
10 lines
202 B
Docker
10 lines
202 B
Docker
FROM nixos/nix:latest
|
|
|
|
RUN nix-env -iA nixpkgs.mount
|
|
|
|
VOLUME "/mnt/nix/store"
|
|
|
|
COPY entrypoint.sh /usr/local/bin/
|
|
COPY nix.conf /etc/nix/nix.conf
|
|
|
|
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"]
|