Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/datakurre/docker-nix-builder

Nix tarball builder image for Docker
https://github.com/datakurre/docker-nix-builder

Last synced: about 2 months ago
JSON representation

Nix tarball builder image for Docker

Awesome Lists containing this project

README

        

Nix tarball builder image for Docker
====================================

Building a Docker image from Nix expression:

$ echo "with import {}; python" |\
docker run --rm -i datakurre/nix-builder|\
docker import --change 'ENTRYPOINT ["/bin/python"]' - python

Building a Docker image from Nix expression file:

$ cat default.nix |\
docker run --rm -i datakurre/nix-builder |\
docker import --chane 'ENTRYPOINT ["/bin/python"]' - pyramid