Fix typo in Dockerfile (#770)

- Change `mantainer` to `maintainer` in the Dockerfile label
This commit is contained in:
Kellin 2022-05-23 02:44:42 -04:00 committed by GitHub
parent 6dfafef998
commit deedb9560b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
ARG BASE_IMAGE=opensuse/tumbleweed:latest ARG BASE_IMAGE=opensuse/tumbleweed:latest
FROM ${BASE_IMAGE} AS builder FROM ${BASE_IMAGE} AS builder
LABEL mantainer william@blackhats.net.au LABEL maintainer william@blackhats.net.au
RUN zypper refresh RUN zypper refresh
RUN zypper dup -y RUN zypper dup -y
@ -46,7 +46,7 @@ RUN if [ "${SCCACHE_REDIS}" != "" ]; \
fi; fi;
FROM ${BASE_IMAGE} FROM ${BASE_IMAGE}
LABEL mantainer william@blackhats.net.au LABEL maintainer william@blackhats.net.au
RUN zypper ref RUN zypper ref
RUN zypper dup -y RUN zypper dup -y