0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-11-09 17:10:41 +00:00

refactor: switch to official alpine as base image (#17)

* refactor: switch to official alpine as base image

* fix dry-run

* use alpine 3.12
This commit is contained in:
Robert Kaussow 2021-02-12 10:48:07 +01:00 committed by GitHub
parent d94de07909
commit df978bd0aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 5 deletions

View File

@ -163,8 +163,7 @@ def linux(ctx, arch):
'dry_run': True,
"dockerfile": "docker/Dockerfile.%s" % (arch),
"repo": "owncloudci/%s" % (ctx.repo.name),
"auto_tag": True,
"auto_tag_suffix": "%s" % (arch),
"tags": "latest",
},
})

View File

@ -1,4 +1,4 @@
FROM plugins/base:linux-amd64@sha256:edb6c2457ea2a40777b0af733e8662a54e366635ce9885ff3ba14cd072650fad
FROM amd64/alpine:3.12
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"

View File

@ -1,4 +1,4 @@
FROM plugins/base:linux-arm@sha256:186ca996404622ab931059474268acee0ffd64dcbf163b8a7385111f1c51af49
FROM arm32v7/alpine:3.12
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"

View File

@ -1,4 +1,4 @@
FROM plugins/base:linux-arm64@sha256:9bdb27fa8e8d1ecdb966638d2fc2e0dfed02f9c74f89fae6fe96acf4efb2c771
FROM arm64v8/alpine:3.12
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"