adtya.xyz/Dockerfile

11 lines
160 B
Text
Raw Normal View History

2024-01-04 18:10:24 +05:30
FROM nixos/nix:latest
WORKDIR /app
COPY . .
RUN nix \
--extra-experimental-features "nix-command flakes" \
build .#app
CMD [ "/app/result/bin/app" ]