diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..522a658 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,7 @@ +FROM ghcr.io/crystal-linux/crystal:latest + +RUN pacman -S --needed --noconfirm cargo openssl git binutils fakeroot pacman-contrib +RUN useradd -m -G wheel vscode +RUN bash -c "echo \"vscode ALL=(ALL) NOPASSWD: ALL\" >> /etc/sudoers" + +ENV USER=vscode