From ff4fec663cc7e9da0ffb178e835e7bb33199f163 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 14 Jul 2021 19:55:40 +0200 Subject: Add a Dockerfile --- scripts/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/Dockerfile diff --git a/scripts/Dockerfile b/scripts/Dockerfile new file mode 100644 index 0000000..3fa39a3 --- /dev/null +++ b/scripts/Dockerfile @@ -0,0 +1,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 + +COPY . /verismith + +WORKDIR /verismith +RUN nix-shell --run "true" -- cgit