From e365f73018efc91f44fc6879a71991a1aa5ecc5f Mon Sep 17 00:00:00 2001 From: rockerbacon Date: Fri, 2 Feb 2024 13:39:16 -0300 Subject: [PATCH] allow running docker container with any user --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf81148..d1daded 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,12 +7,12 @@ ENV PATH=/root/.local/bin:$PATH RUN if [ "$INSTALL_DEBUG" ] ; then \ apt-get -y update && apt-get -y install --no-install-recommends \ vim htop bmon net-tools iputils-ping procps curl \ - && pip install --user ipython \ + && pip install ipython \ ; fi # install requirements COPY ./requirements.txt /requirements.txt -RUN pip install --user -r requirements.txt +RUN pip install -r requirements.txt COPY app /app WORKDIR app