We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ccf05 commit 9cab3f4Copy full SHA for 9cab3f4
docker-contributor/Dockerfile
@@ -1,5 +1,5 @@
1
ARG ARCH=
2
-FROM ${ARCH}ubuntu:focal
+FROM "${ARCH}ubuntu:focal"
3
LABEL maintainer="DOMjudge team <[email protected]>"
4
5
ENV DEBIAN_FRONTEND=noninteractive \
@@ -49,7 +49,7 @@ RUN ln -sf /dev/stdout /var/log/nginx/access.log \
49
# Set up users
50
RUN useradd -m domjudge \
51
&& groupadd domjudge-run \
52
- && for id in $(seq 0 4); do useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-$id; done
+ && for id in $(seq 0 4); do useradd -d /nonexistent -g nogroup -s /bin/false "domjudge-run-$id"; done
53
54
# Install composer
55
RUN apt update && \
0 commit comments