Skip to content

Commit

Permalink
Add chown for container volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
edmondchuc committed Jan 11, 2023
1 parent 8c113cd commit a4da002
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile.devcontainer
Expand Up @@ -47,3 +47,17 @@ RUN \
poetry==1.3.1 \
&& \
true

RUN \
mkdir -p \
/srv/workspace/.venv \
/srv/workspace/.tox \
/srv/workspace/.mypy_cache \
/srv/workspace/.pytest_cache

RUN \
chown -R 1000:1000 \
/srv/workspace/.venv \
/srv/workspace/.tox \
/srv/workspace/.mypy_cache \
/srv/workspace/.pytest_cache

0 comments on commit a4da002

Please sign in to comment.