├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── alpine-install.sh ├── update.sh └── version.env /.dockerignore: -------------------------------------------------------------------------------- 1 | update.sh 2 | README.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/README.md -------------------------------------------------------------------------------- /alpine-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/alpine-install.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/update.sh -------------------------------------------------------------------------------- /version.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/docker-nix/HEAD/version.env --------------------------------------------------------------------------------