diff --git a/makefiles/docker/alpine/Dockerfile b/makefiles/docker/alpine/Dockerfile index 2d1e5619a3..e254676d86 100644 --- a/makefiles/docker/alpine/Dockerfile +++ b/makefiles/docker/alpine/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://hub.docker.com/_/alpine FROM alpine:edge AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN apk add --no-cache git build-base linux-headers cmake xfce4-dev-tools diff --git a/makefiles/docker/archlinux/Dockerfile b/makefiles/docker/archlinux/Dockerfile index 7d831750f5..6c08aa58ea 100644 --- a/makefiles/docker/archlinux/Dockerfile +++ b/makefiles/docker/archlinux/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://hub.docker.com/_/archlinux/ FROM archlinux:latest AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN pacman -Syu --noconfirm git base-devel cmake lsb-release diff --git a/makefiles/docker/centos/Dockerfile b/makefiles/docker/centos/Dockerfile index 448abe4d46..daef3ec8fa 100644 --- a/makefiles/docker/centos/Dockerfile +++ b/makefiles/docker/centos/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://quay.io/repository/centos/centos FROM quay.io/centos/centos:stream AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN dnf -y update \ diff --git a/makefiles/docker/debian/Dockerfile b/makefiles/docker/debian/Dockerfile index 1b7fb87cca..350c4071c5 100644 --- a/makefiles/docker/debian/Dockerfile +++ b/makefiles/docker/debian/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://hub.docker.com/_/debian FROM debian:latest AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN apt-get update -qq \ diff --git a/makefiles/docker/fedora/Dockerfile b/makefiles/docker/fedora/Dockerfile index 8e1242b5ae..004985df5e 100644 --- a/makefiles/docker/fedora/Dockerfile +++ b/makefiles/docker/fedora/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://hub.docker.com/_/fedora FROM fedora:latest AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN dnf -y update \ diff --git a/makefiles/docker/ubuntu/Dockerfile b/makefiles/docker/ubuntu/Dockerfile index d3a8bc7ed9..19acd529f7 100644 --- a/makefiles/docker/ubuntu/Dockerfile +++ b/makefiles/docker/ubuntu/Dockerfile @@ -1,7 +1,6 @@ # Create a virtual environment with all tools installed # ref: https://hub.docker.com/_/ubuntu FROM ubuntu:rolling AS base -LABEL maintainer="corentinl@google.com" # Install system build dependencies ENV PATH=/usr/local/bin:$PATH RUN apt-get update -qq \