From 00416a17242d7f979383bfee0d39825bfd710ef3 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Thu, 18 Sep 2025 13:24:08 -0400 Subject: Content updates (#394) * config.json: Update email * devcontainer.json: Update devcontainer image for Bookworm, nodejs 22 * devcontainer.json: Support podman with container user settings * index.njk: Update recent technology experience * page.njk: Update copy year to 2025 * fingerprint.svg: Add new fingerprint icon * styles.css: Add fingerprint icon class * index.njk: Switch pantry link for public key link * styles.css: Remove code icon class * code.svg: Remove code icon * index.njk: Fix icon name --- .devcontainer/devcontainer.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to '.devcontainer/devcontainer.json') diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c294c30..3c4e98d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,6 @@ { "name": "Submelon FP", - "image": "mcr.microsoft.com/devcontainers/typescript-node:18-bullseye", - + "image": "mcr.microsoft.com/devcontainers/typescript-node:22-bookworm", "customizations": { "vscode": { "settings": { @@ -15,8 +14,11 @@ ] } }, - + "runArgs": [ + "--userns=keep-id" + ], + "remoteUser": "node", + "containerUser": "node", // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "yarn install" - -} +} \ No newline at end of file -- cgit