We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57bd3da commit 4466e14Copy full SHA for 4466e14
tools/docker/dev/Dockerfile
@@ -3,8 +3,10 @@ FROM nixos/nix
3
WORKDIR /autonomy
4
COPY tools/nix ./tools/nix
5
6
-RUN nix-channel --update \
7
- && echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf \
+RUN echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf \
+ && echo "sandbox = false" >> /etc/nix/nix.conf \
8
+ && echo "filter-syscalls = false" >> /etc/nix/nix.conf \
9
+ && nix-channel --update \
10
&& nix develop ./tools/nix --command echo "Nix environment built and cached" \
11
&& mkdir -p /root/.local/bin \
12
&& mkdir -p /root/.cache
0 commit comments