Skip to content

Commit 2737b8d

Browse files
committed
fixes
1 parent 00da81d commit 2737b8d

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

.grype.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ ignore:
3535
- vulnerability: CVE-2026-32283
3636
- vulnerability: CVE-2026-32281
3737
- vulnerability: CVE-2026-33810
38-
- vulnerability: CVE-2026-6100
39-
- vulnerability: CVE-2026-4786
38+
- vulnerability: CVE-2026-6100
39+
- vulnerability: CVE-2026-4786
4040
# node_24 vulnerabilities
4141
- vulnerability: GHSA-c2c7-rcm5-vvqj
4242
- vulnerability: GHSA-7r86-cg39-jmmj

src/base/.devcontainer/devcontainer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"IMAGE_TAG": "${localEnv:IMAGE_TAG}"
1313
}
1414
},
15+
"runArgs": ["--network=host"],
1516
"postCreateCommand": "bash ${SCRIPTS_DIR}/post_create.sh",
1617
"postStartCommand": "bash ${SCRIPTS_DIR}/post_start.sh",
1718
"postAttachCommand": "bash ${SCRIPTS_DIR}/post_attach.sh",

src/base/.devcontainer/scripts/install_direnv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515
# Checks if packages are installed and installs them if not
1616
check_packages() {
1717
if ! dpkg -s "$@" > /dev/null 2>&1; then
18-
sudo apt-get -y install --no-install-recommends "$@"
18+
apt-get -y install --no-install-recommends "$@"
1919
fi
2020
}
2121

src/base/.devcontainer/scripts/install_shellcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515
# Checks if packages are installed and installs them if not
1616
check_packages() {
1717
if ! dpkg -s "$@" > /dev/null 2>&1; then
18-
sudo apt-get -y install --no-install-recommends "$@"
18+
apt-get -y install --no-install-recommends "$@"
1919
fi
2020
}
2121

src/base/.devcontainer/scripts/install_yq.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515
# Checks if packages are installed and installs them if not
1616
check_packages() {
1717
if ! dpkg -s "$@" > /dev/null 2>&1; then
18-
sudo apt-get -y install --no-install-recommends "$@"
18+
apt-get -y install --no-install-recommends "$@"
1919
fi
2020
}
2121

0 commit comments

Comments
 (0)