We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11af94d commit 32d2104Copy full SHA for 32d2104
.devcontainer/Dockerfile
@@ -9,8 +9,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
9
RUN useradd --create-home --shell /bin/bash $USER
10
11
USER $USER
12
-ENV PATH "$PATH:/home/$USER/.local/bin"
13
-WORKDIR /home/$USER/admin
+ENV PATH="$PATH:/home/$USER/.local/bin"
+RUN mkdir -p /home/$USER/.config/compiler-admin
14
+WORKDIR /home/$USER/compiler-admin
15
16
RUN python -m pip install --upgrade pip
17
@@ -20,7 +21,7 @@ COPY pyproject.toml pyproject.toml
20
21
RUN pip install -e .[dev,test]
22
23
USER root
-RUN chown -R $USER /home/$USER
24
+RUN chown -R $USER:$USER /home/$USER
25
26
27
CMD ["sleep", "infinity"]
0 commit comments