Skip to content

Commit fb5180d

Browse files
authored
Dockerfile: fix ENV warning (RPi-Distro#791)
Newer versions of docker generate the following warning - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 4)
1 parent fc28035 commit fb5180d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE=debian:bullseye
22
FROM ${BASE_IMAGE}
33

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

66
RUN apt-get -y update && \
77
apt-get -y install --no-install-recommends \

0 commit comments

Comments
 (0)