diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1ff3ab6..52931c0 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,9 +1,13 @@ FROM crystallinux/crystal:crystal WORKDIR /home/ - COPY . . +RUN useradd -m vscode + RUN bash ./setup.sh +USER vscode +RUN bash ./rust.sh + ENV PATH="/root/.cargo/bin:$PATH"