aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Dockerfile
blob: c4821685b0b5f2485e393b1724356a2ee180f849 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM nixos/nix

RUN nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
RUN nix-channel --update

RUN nix-env -i yosys git tmux vim gcc iverilog cabal-install wget

COPY . /verismith

WORKDIR /verismith
RUN nix-shell --run "cabal update"