Fix useradd in Dockerfile*

exposed while trying to release 2.0.0
This commit is contained in:
Klaas van Schelven
2025-09-16 10:55:29 +02:00
parent 4fd0ba04fd
commit e346f8d5c2
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ RUN apt update && apt install -y git
RUN pip install -e .
RUN groupadd --gid 14237 bugsink \
&& useradd --uid 14237 --gid bugsink \
&& useradd --uid 14237 --gid 14237 bugsink \
&& mkdir -p /data \
&& chown -R bugsink:bugsink /data

View File

@@ -73,7 +73,7 @@ RUN cp /usr/local/lib/python3.12/site-packages/bugsink/conf_templates/docker.py.
cp /usr/local/lib/python3.12/site-packages/bugsink/gunicorn.docker.conf.py /app/gunicorn.docker.conf.py
RUN groupadd --gid 14237 bugsink \
&& useradd --uid 14237 --gid bugsink \
&& useradd --uid 14237 --gid 14237 bugsink \
&& mkdir -p /data \
&& chown -R bugsink:bugsink /data