diff --git a/Dockerfile b/Dockerfile index 09e1dfb1..305b358d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,10 @@ FROM mcr.microsoft.com/devcontainers/universal:linux -ARG USER=codespace - -ENV USER=$USER \ - HOME=/home/$USER - -USER $USER +USER codespace WORKDIR /workspaces/.codespaces/.persistedshare/dotfiles -COPY --chown=$USER . . +COPY . . RUN ./install.sh