Skip to content

Commit 359a856

Browse files
committed
docker: Remove remnants of .env file configuration
Signed-off-by: Stephen Finucane <[email protected]>
1 parent e96a2d3 commit 359a856

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tools/docker/Dockerfile

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
FROM ghcr.io/getpatchwork/pyenv:latest
22

3-
ARG UID=1000
4-
ARG GID=1000
5-
63
ARG TZ="Australia/Canberra"
74
ENV DEBIAN_FRONTEND noninteractive
85
ENV PYTHONUNBUFFERED 1
96
ENV PROJECT_HOME /home/patchwork/patchwork
107
ENV DJANGO_SETTINGS_MODULE patchwork.settings.dev
118

12-
RUN groupadd --gid=$GID patchwork && \
13-
useradd --uid=$UID --gid=$GID --create-home patchwork
9+
RUN groupadd patchwork && \
10+
useradd --gid=patchwork --create-home patchwork
1411
RUN rm -f /etc/localtime; ln -s /usr/share/zoneinfo/$TZ /etc/localtime
1512

1613
RUN eval "$(pyenv init -)"

0 commit comments

Comments
 (0)