fix: docker push

This commit is contained in:
Elijah McMorris 2024-06-14 15:10:05 -07:00
parent c2267a4bea
commit 486ed4c958
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
4 changed files with 24 additions and 18 deletions

View file

@ -27,6 +27,11 @@
"source": "${localWorkspaceFolderBasename}-target",
"target": "${containerWorkspaceFolder}/target",
"type": "volume"
},
{
"source": "nix-store",
"target": "/nix/store",
"type": "volume"
}
],
// Features to add to the dev container. More info: https://containers.dev/features.
@ -51,7 +56,8 @@
"postAttachCommand": {
"AddGitSafeDir": "git config --global --add safe.directory /workspaces/${containerWorkspaceFolderBasename}",
"update": "rustup target add x86_64-unknown-linux-musl && rustup update && cargo update",
"clippy": "cargo clippy --fix --allow-dirty"
"clippy": "cargo clippy --fix --allow-dirty",
"nix flake update": "nix flake update"
},
// Configure tool-specific properties.
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.