diff --git a/backend/Dockerfile b/backend/Dockerfile index 116d9d3..d667699 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,8 +3,7 @@ USER root RUN apt-get update && apt-get install -y python3-full python3 python3-pip pipx COPY requirements.txt . RUN sudo pipx ensurepath -RUN sudo pipx ensurepath --global -RUN sudo pipx install --global --no-cache-dir -r requirements.txt +RUN sudo pipx install --no-cache-dir -r requirements.txt USER seluser WORKDIR /home/seluser COPY . .