gitlab-ci-multiplatform
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
gitlab-ci-multiplatform [2021/01/09 09:49] – [Create buildx enabled docker image for builds] baumi | gitlab-ci-multiplatform [2021/01/09 10:07] (current) – [Enable Emulators] baumi | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Gitlab CI MultiPlatform Build ====== | ====== Gitlab CI MultiPlatform Build ====== | ||
- | ===== Enable | + | ===== Enable |
- | < | + | < |
- | # docker run -it --rm --privileged tonistiigi/ | + | $ docker run --rm --privileged tonistiigi/ |
{ | { | ||
" | " | ||
Line 26: | Line 26: | ||
===== Create buildx enabled docker image for builds ===== | ===== Create buildx enabled docker image for builds ===== | ||
<file bash Dockerfile> | <file bash Dockerfile> | ||
+ | ARG BUILDX_VERSION=0.4.2 | ||
+ | ARG DOCKER_VERSION=latest | ||
+ | FROM alpine AS fetcher | ||
+ | |||
+ | RUN apk add curl | ||
+ | |||
+ | ARG BUILDX_VERSION | ||
+ | RUN curl -L \ | ||
+ | --output / | ||
+ | " | ||
+ | |||
+ | RUN chmod a+x / | ||
+ | |||
+ | ARG DOCKER_VERSION | ||
+ | FROM docker: | ||
+ | |||
+ | COPY --from=fetcher / | ||
</ | </ | ||
- | Build image | + | Credits to [[https:// |
+ | |||
+ | ==== Build & push image ==== | ||
<code bash> | <code bash> |
gitlab-ci-multiplatform.1610182175.txt.gz · Last modified: 2021/01/09 09:49 by baumi