We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e96a2d3 commit 359a856Copy full SHA for 359a856
tools/docker/Dockerfile
@@ -1,16 +1,13 @@
1
FROM ghcr.io/getpatchwork/pyenv:latest
2
3
-ARG UID=1000
4
-ARG GID=1000
5
-
6
ARG TZ="Australia/Canberra"
7
ENV DEBIAN_FRONTEND noninteractive
8
ENV PYTHONUNBUFFERED 1
9
ENV PROJECT_HOME /home/patchwork/patchwork
10
ENV DJANGO_SETTINGS_MODULE patchwork.settings.dev
11
12
-RUN groupadd --gid=$GID patchwork && \
13
- useradd --uid=$UID --gid=$GID --create-home patchwork
+RUN groupadd patchwork && \
+ useradd --gid=patchwork --create-home patchwork
14
RUN rm -f /etc/localtime; ln -s /usr/share/zoneinfo/$TZ /etc/localtime
15
16
RUN eval "$(pyenv init -)"
0 commit comments