removed ssh agent socket redundancy for vscode, created new user for limiting root access, adapted devcontainer.json to changes

This commit is contained in:
2026-02-19 17:35:12 +01:00
parent 4693946d60
commit 758d047627
2 changed files with 26 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
FROM espressif/idf:release-v5.5
#instalar git, herramientas basicas y reglas udev
RUN apt-get update && apt-get install -y git curl python3-pip udev clangd && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git curl python3-pip neovim udev clangd && rm -rf /var/lib/apt/lists/*
# Vamos a evitar usar el usuario root para todo
RUN useradd -m -u 1200 -g dialout espDev