From c3b2c83c89e0be870152de93f97081e34700f2c2 Mon Sep 17 00:00:00 2001 From: Keith Ralphs Date: Wed, 25 Oct 2023 14:20:19 +0100 Subject: [PATCH] Alter permissions of venv and cache (#318) --- .devcontainer/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d7032c1ce..e7faaaff2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -32,6 +32,9 @@ FROM python:3.11 as runtime COPY --from=build /venv/ /venv/ ENV PATH=/venv/bin:$PATH + +RUN mkdir -p /.cache/pip; chmod -R 777 /venv /.cache/pip + # change this entrypoint if it is not the same as the repo ENTRYPOINT ["blueapi"] CMD ["serve"]