From ebea409e6a74231f96a451e247fc9fec230a5b74 Mon Sep 17 00:00:00 2001 From: VocalFan <45863583+Mou-Ikkai@users.noreply.github.com> Date: Sun, 2 Oct 2022 11:53:37 -0400 Subject: [PATCH] build: Fix deprecated MAINTAINER flag in DockerFile (#767) --- dist/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/Dockerfile b/dist/Dockerfile index 9cb57ec25..a5a34ee0b 100644 --- a/dist/Dockerfile +++ b/dist/Dockerfile @@ -1,6 +1,6 @@ FROM archlinux:latest -MAINTAINER WerWolv "hey@werwolv.net" +LABEL maintainer="hey@werwolv.net" = WerWolv # Install dependencies RUN pacman -Syy --needed --noconfirm @@ -25,4 +25,4 @@ RUN git clone https://github.com/WerWolv/ImHex --recurse-submodules /root/ImHex RUN mkdir /root/ImHex/build WORKDIR /root/ImHex/build RUN cmake .. && make -j -WORKDIR /root/ImHex \ No newline at end of file +WORKDIR /root/ImHex