File size: 228 Bytes
2abc55e
a6c2dde
 
 
 
 
1
2
3
4
5
6
7
FROM nixos/nix:2.31.2
RUN echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
COPY . /workspace
WORKDIR /workspace
RUN nix build .#default --out-link /workspace/result
CMD ["/workspace/result/bin/run-gradio"]