Skip to content

Commit d84f0d2

Browse files
committed
fix: LegacyKeyValueFormat
"ENV key=value" should be used instead of legacy "ENV key value" format
1 parent 1c77156 commit d84f0d2

10 files changed

+10
-10
lines changed

Dockerfile-5.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM php:5.6-fpm
99
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
1010

1111
# Set Environment Variables
12-
ENV DEBIAN_FRONTEND noninteractive
12+
ENV DEBIAN_FRONTEND=noninteractive
1313

1414
#
1515
#--------------------------------------------------------------------------

Dockerfile-7.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM php:7.0-fpm
99
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
1010

1111
# Set Environment Variables
12-
ENV DEBIAN_FRONTEND noninteractive
12+
ENV DEBIAN_FRONTEND=noninteractive
1313

1414
#
1515
#--------------------------------------------------------------------------

Dockerfile-7.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM php:7.1-fpm
99
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
1010

1111
# Set Environment Variables
12-
ENV DEBIAN_FRONTEND noninteractive
12+
ENV DEBIAN_FRONTEND=noninteractive
1313

1414
#
1515
#--------------------------------------------------------------------------

Dockerfile-7.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM php:7.2-fpm
99
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
1010

1111
# Set Environment Variables
12-
ENV DEBIAN_FRONTEND noninteractive
12+
ENV DEBIAN_FRONTEND=noninteractive
1313

1414
#
1515
#--------------------------------------------------------------------------

Dockerfile-7.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM php:7.3-fpm
99
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
1010

1111
# Set Environment Variables
12-
ENV DEBIAN_FRONTEND noninteractive
12+
ENV DEBIAN_FRONTEND=noninteractive
1313

1414
#
1515
#--------------------------------------------------------------------------

Dockerfile-7.4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FROM php:7.4-fpm
88

99
# Set Environment Variables
10-
ENV DEBIAN_FRONTEND noninteractive
10+
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
#
1313
#--------------------------------------------------------------------------

Dockerfile-8.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FROM php:8.0-fpm
88

99
# Set Environment Variables
10-
ENV DEBIAN_FRONTEND noninteractive
10+
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
#
1313
#--------------------------------------------------------------------------

Dockerfile-8.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FROM php:8.1-fpm
88

99
# Set Environment Variables
10-
ENV DEBIAN_FRONTEND noninteractive
10+
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
#
1313
#--------------------------------------------------------------------------

Dockerfile-8.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FROM php:8.2-fpm
88

99
# Set Environment Variables
10-
ENV DEBIAN_FRONTEND noninteractive
10+
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
#
1313
#--------------------------------------------------------------------------

Dockerfile-8.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
FROM php:8.3-fpm
88

99
# Set Environment Variables
10-
ENV DEBIAN_FRONTEND noninteractive
10+
ENV DEBIAN_FRONTEND=noninteractive
1111

1212
#
1313
#--------------------------------------------------------------------------

0 commit comments

Comments
 (0)