Skip to content

Commit efee424

Browse files
committed
fix(docker): avoid deprecated statements
Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 21e100e commit efee424

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: docker/sysdig/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ FROM registry.access.redhat.com/ubi8/ubi
22

33
LABEL usage="docker run --rm -i -t --privileged --net=host -v /var/run/docker.sock:/host/var/run/docker.sock -v /dev:/host/dev -v /proc:/host/proc:ro -v /boot:/host/boot:ro -v /src:/src -v /lib/modules:/host/lib/modules:ro -v /usr:/host/usr:ro -v /etc:/host/etc:ro --name NAME IMAGE"
44

5-
ARG BUILD_VERSION 0.1.1dev
6-
ENV BUILD_VERSION ${BUILD_VERSION}
5+
ARG BUILD_VERSION=0.1.1dev
6+
ENV BUILD_VERSION=${BUILD_VERSION}
77

8-
ENV HOST_ROOT /host
9-
ENV HOME /root
8+
ENV HOST_ROOT=/host
9+
ENV HOME=/root
1010

1111
RUN yum -y install \
1212
make \

0 commit comments

Comments
 (0)