9 lines
179 B
Docker
9 lines
179 B
Docker
|
FROM nixpkgs/nix-flakes:nixos-24.05
|
||
|
WORKDIR /app
|
||
|
COPY . .
|
||
|
|
||
|
# Pre-build the project to cache dependencies
|
||
|
RUN nix develop -c true
|
||
|
|
||
|
ENTRYPOINT ["nix", "develop", "-c", "./test.sh"]
|