Skip to content

Commit 9cab3f4

Browse files
committed
Fix quoting
1 parent b7ccf05 commit 9cab3f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-contributor/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG ARCH=
2-
FROM ${ARCH}ubuntu:focal
2+
FROM "${ARCH}ubuntu:focal"
33
LABEL maintainer="DOMjudge team <[email protected]>"
44

55
ENV DEBIAN_FRONTEND=noninteractive \
@@ -49,7 +49,7 @@ RUN ln -sf /dev/stdout /var/log/nginx/access.log \
4949
# Set up users
5050
RUN useradd -m domjudge \
5151
&& groupadd domjudge-run \
52-
&& for id in $(seq 0 4); do useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-$id; done
52+
&& for id in $(seq 0 4); do useradd -d /nonexistent -g nogroup -s /bin/false "domjudge-run-$id"; done
5353

5454
# Install composer
5555
RUN apt update && \

0 commit comments

Comments
 (0)