podman/Containerfile-nix

11 lines
156 B
Docker

# vim: set syntax=dockerfile:
FROM nixos/nix:latest
RUN apk add --no-cache bash git
COPY . /work
WORKDIR work/nix
RUN nix-build
WORKDIR /
RUN rm -rf work