secp256k1/ci/linux-nixos.Dockerfile
2021-01-29 21:54:07 +01:00

13 lines
368 B
Docker

FROM nixos/nix
COPY ci/shell.nix /tmp
COPY ci/shell-i686.nix /tmp
RUN nix-channel --remove nixpkgs
RUN nix-channel --add https://nixos.org/channels/nixos-20.09 nixpkgs
RUN nix-channel --update
# Run dummy command "true" in the nix-shell just to get the packages prepared.
RUN nix-shell /tmp/shell.nix --command true
RUN nix-shell /tmp/shell-i686.nix --command true