diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 64b40ca..e08b892 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,3 +1,7 @@ FROM ghcr.io/crystal-linux/crystal:latest RUN pacman -S --needed --noconfirm cargo openssl git binutils fakeroot pacman-contrib vim expac less +RUN useradd -m -G wheel vscode +RUN bash -c "echo \"vscode ALL=(ALL) NOPASSWD: ALL\" >> /etc/sudoers" + +ENV USER=vscode