Skip to content

Commit 35d51ac

Browse files
committed
fix syntax on ENV directive in Dockerfiles
1 parent d7626a1 commit 35d51ac

5 files changed

Lines changed: 5 additions & 5 deletions

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BZDB="-mysql"
22
FROM bugzilla/bugzilla-perl-slim${BZDB}:20250925.1
33

4-
ENV DEBIAN_FRONTEND noninteractive
4+
ENV DEBIAN_FRONTEND=noninteractive
55

66
ENV LOG4PERL_CONFIG_FILE=log4perl-json.conf
77

docker/images/Dockerfile.bugzilla-perl-slim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN find local -name '*.so' -exec ldd {} \; \
4343

4444
FROM perl:5.38.2-slim
4545

46-
ENV DEBIAN_FRONTEND noninteractive
46+
ENV DEBIAN_FRONTEND=noninteractive
4747

4848
COPY --from=builder /app/local /app/local
4949
COPY --from=builder /app/PACKAGES /app/PACKAGES

docker/images/Dockerfile.bugzilla-perl-slim-mariadb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN find local -name '*.so' -exec ldd {} \; \
4040

4141
FROM bugzilla/bugzilla-perl-slim:20250925.1
4242

43-
ENV DEBIAN_FRONTEND noninteractive
43+
ENV DEBIAN_FRONTEND=noninteractive
4444

4545
COPY --from=builder /app/local /app/local
4646
COPY --from=builder /app/PACKAGES /app/PACKAGES

docker/images/Dockerfile.bugzilla-perl-slim-mysql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN find local -name '*.so' -exec ldd {} \; \
5050

5151
FROM bugzilla/bugzilla-perl-slim:20250925.1
5252

53-
ENV DEBIAN_FRONTEND noninteractive
53+
ENV DEBIAN_FRONTEND=noninteractive
5454

5555
COPY --from=builder /app/local /app/local
5656
COPY --from=builder /app/PACKAGES /app/PACKAGES

docker/images/Dockerfile.bugzilla-perl-slim-pg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RUN find local -name '*.so' -exec ldd {} \; \
5151
# developer tools
5252
FROM bugzilla/bugzilla-perl-slim:20250925.1
5353

54-
ENV DEBIAN_FRONTEND noninteractive
54+
ENV DEBIAN_FRONTEND=noninteractive
5555

5656
# copy the stuff we built over from the temporary image
5757
COPY --from=builder /app/local /app/local

0 commit comments

Comments
 (0)