Skip to content

Commit 94cd97e

Browse files
ekoopspoiana
authored andcommitted
chore(docker): use new ENV syntax in place of deprecated one
Signed-off-by: Leonardo Di Giovanna <[email protected]>
1 parent b39f881 commit 94cd97e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docker/driver-loader-buster/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ARG VERSION_BUCKET=deb
2020
ENV VERSION_BUCKET=${VERSION_BUCKET}
2121

2222
ENV FALCO_VERSION=${FALCO_VERSION}
23-
ENV HOST_ROOT /host
24-
ENV HOME /root
23+
ENV HOST_ROOT=/host
24+
ENV HOME=/root
2525

2626
RUN cp /etc/skel/.bashrc /root && cp /etc/skel/.profile /root
2727

docker/driver-loader/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ LABEL org.opencontainers.image.authors='The Falco Authors https://falco.org' \
1515

1616
LABEL usage="docker run -i -t --privileged -v /root/.falco:/root/.falco -v /proc:/host/proc:ro -v /boot:/host/boot:ro -v /lib/modules:/host/lib/modules:ro -v /usr:/host/usr:ro -v /etc:/host/etc:ro falcosecurity/falco-driver-loader:latest [driver] [options]"
1717

18-
ENV HOST_ROOT /host
19-
ENV HOME /root
18+
ENV HOST_ROOT=/host
19+
ENV HOME=/root
2020

2121
RUN cp /etc/skel/.bashrc /root && cp /etc/skel/.profile /root
2222

docker/falco-debian/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ ARG VERSION_BUCKET=deb
1919
ENV FALCO_VERSION=${FALCO_VERSION}
2020
ENV VERSION_BUCKET=${VERSION_BUCKET}
2121

22-
ENV HOST_ROOT /host
23-
ENV HOME /root
22+
ENV HOST_ROOT=/host
23+
ENV HOME=/root
2424

2525
RUN apt-get -y update && apt-get -y install ca-certificates curl jq ca-certificates gnupg2 \
2626
&& apt clean -y && rm -rf /var/lib/apt/lists/*

docker/falco/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ ARG VERSION_BUCKET=bin
1919

2020
ENV FALCO_VERSION=${FALCO_VERSION}
2121
ENV VERSION_BUCKET=${VERSION_BUCKET}
22-
ENV HOST_ROOT /host
23-
ENV HOME /root
22+
ENV HOST_ROOT=/host
23+
ENV HOME=/root
2424

2525
RUN apk update && apk add curl ca-certificates jq libstdc++
2626

0 commit comments

Comments
 (0)