Cleanup main makefile and remove the need of sed (#4995)
This commit is contained in:
parent
3f94729c52
commit
ee5595f5be
3 changed files with 22 additions and 40 deletions
|
|
@ -12,14 +12,17 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
FROM --platform=$BUILDPLATFORM BASEIMAGE
|
||||
ARG BASE_IMAGE
|
||||
ARG VERSION
|
||||
|
||||
LABEL org.opencontainers.image.title='NGINX Ingress Controller for Kubernetes'
|
||||
LABEL org.opencontainers.image.documentation='https://kubernetes.github.io/ingress-nginx/'
|
||||
FROM --platform=$BUILDPLATFORM ${BASE_IMAGE}
|
||||
|
||||
LABEL org.opencontainers.image.title="NGINX Ingress Controller for Kubernetes"
|
||||
LABEL org.opencontainers.image.documentation="https://kubernetes.github.io/ingress-nginx/"
|
||||
LABEL org.opencontainers.image.source="https://github.com/kubernetes/ingress-nginx"
|
||||
LABEL org.opencontainers.image.vendor='The Kubernetes Authors'
|
||||
LABEL org.opencontainers.image.licenses='Apache-2.0'
|
||||
LABEL org.opencontainers.image.version='VERSION'
|
||||
LABEL org.opencontainers.image.vendor="The Kubernetes Authors"
|
||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||
LABEL org.opencontainers.image.version="${VERSION}"
|
||||
|
||||
WORKDIR /etc/nginx
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue