remove deprecated maintainer from dockerfile

This commit is contained in:
André Bauer 2020-02-26 22:56:54 +01:00
parent 1733fa428a
commit 97b8b87caa
4 changed files with 9 additions and 4 deletions

View File

@ -21,6 +21,14 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: lint zammad dockerfile - name: lint zammad dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: containers/zammad-elasticsearch/Dockerfile
- name: lint elasticsearch dockerfile
uses: brpaz/hadolint-action@master
with:
dockerfile: containers/zammad-postgresql/Dockerfile
- name: lint postgresql dockerfile
uses: brpaz/hadolint-action@master uses: brpaz/hadolint-action@master
with: with:
dockerfile: containers/zammad/Dockerfile dockerfile: containers/zammad/Dockerfile

View File

@ -1,5 +1,4 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:7.6.0 FROM docker.elastic.co/elasticsearch/elasticsearch:7.6.0
MAINTAINER Zammad <info@zammad.org>
ARG BUILD_DATE ARG BUILD_DATE
LABEL org.label-schema.build-date="$BUILD_DATE" \ LABEL org.label-schema.build-date="$BUILD_DATE" \

View File

@ -1,6 +1,5 @@
FROM postgres:9.6.17-alpine FROM postgres:9.6.17-alpine
MAINTAINER Zammad <info@zammad.org>
ARG BUILD_DATE ARG BUILD_DATE
LABEL org.label-schema.build-date="$BUILD_DATE" \ LABEL org.label-schema.build-date="$BUILD_DATE" \

View File

@ -2,7 +2,6 @@ FROM ruby:2.5.5-slim AS builder
# note: zammad is currently incompatible to alpine because of: # note: zammad is currently incompatible to alpine because of:
# https://github.com/docker-library/ruby/issues/113 # https://github.com/docker-library/ruby/issues/113
MAINTAINER Zammad <info@zammad.org>
ARG BUILD_DATE ARG BUILD_DATE
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive