File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ services:
14
14
# https://stackoverflow.com/a/55706057
15
15
- SYS_NICE # CAP_SYS_NICE
16
16
web :
17
+ platform : linux/amd64
17
18
build :
18
19
context : .
19
20
dockerfile : ./tools/docker/Dockerfile
Original file line number Diff line number Diff line change 187
187
'NON_FIELD_ERRORS_KEY' : 'detail' ,
188
188
}
189
189
190
+ DEBUG = True
190
191
#
191
192
# Logging settings
192
193
#
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED 1
9
9
ENV PROJECT_HOME /home/patchwork/patchwork
10
10
ENV DJANGO_SETTINGS_MODULE patchwork.settings.dev
11
11
12
- RUN groupadd --gid=$GID patchwork && \
12
+ RUN groupadd -o - -gid=$GID patchwork && \
13
13
useradd --uid=$UID --gid=$GID --create-home patchwork
14
14
RUN rm -f /etc/localtime; ln -s /usr/share/zoneinfo/$TZ /etc/localtime
15
15
You can’t perform that action at this time.
0 commit comments