From c2f417036f91a9e62a1b613d3673c760e6f0ab3e Mon Sep 17 00:00:00 2001 From: rafa Date: Wed, 22 Oct 2025 15:39:43 +0100 Subject: [PATCH] Remove django user --- backend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 0d499ed..6a0650c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -13,8 +13,8 @@ WORKDIR /app COPY requirements.txt requirements.txt RUN pip install -r requirements.txt EXPOSE 8000 -COPY --chown=django . . - -USER django:django +#COPY --chown=django . . +COPY . . +#USER django:django ENTRYPOINT ["/bin/bash", "entrypoint.sh"]