alpine 3.18

This commit is contained in:
Hyatt 2023-05-12 08:06:42 -05:00
parent 99cfbe199b
commit 5150852ed1
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ pipeline {
steps { steps {
script { script {
workspace = pwd() workspace = pwd()
dockerFile = """FROM ${repository}/dockerhub/library/alpine:latest dockerFile = """FROM ${repository}/dockerhub/library/alpine:3.18.0
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>" LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
LABEL org.opencontainers.image.title="alpine" LABEL org.opencontainers.image.title="alpine"

View File

@ -59,12 +59,12 @@ RUN apt-get update && \\
credentials: repositoryCreds credentials: repositoryCreds
], ],
[ [
repository: "https://index.docker.io/v2/", repository: "https://index.docker.io/v1/",
credentials: "dockerhub-repository-creds" credentials: "dockerhub-repository-creds"
], ],
], ],
destination: [ destination: [
"index.docker.io/thespider/php-mysqli:latest", "index.docker.io/thespider/peehpee-mysqli:latest",
"${repository}/library/php-mysqli:latest", "${repository}/library/php-mysqli:latest",
] ]
) )