Dockerfile: fix ENV warning (#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)
This commit is contained in:
parent
fc280356b1
commit
fb5180d3de
@ -1,7 +1,7 @@
|
||||
ARG BASE_IMAGE=debian:bullseye
|
||||
FROM ${BASE_IMAGE}
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get -y update && \
|
||||
apt-get -y install --no-install-recommends \
|
||||
|
Loading…
x
Reference in New Issue
Block a user