Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
a044db23
Unverified
Commit
a044db23
authored
8 months ago
by
Michael Kriese
Committed by
GitHub
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
build(docker): use cross platform builds (#29983)
parent
8f77da6f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/docker/Dockerfile
+24
-6
24 additions, 6 deletions
tools/docker/Dockerfile
with
24 additions
and
6 deletions
tools/docker/Dockerfile
+
24
−
6
View file @
a044db23
...
@@ -13,16 +13,34 @@ FROM ghcr.io/renovatebot/base-image:2.24.0-full@sha256:323eb53c3a1706e6bf87d4e8e
...
@@ -13,16 +13,34 @@ FROM ghcr.io/renovatebot/base-image:2.24.0-full@sha256:323eb53c3a1706e6bf87d4e8e
# --------------------------------------
# --------------------------------------
# build image
# build image
# --------------------------------------
# --------------------------------------
FROM
slim-base
as
build
FROM
--platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:2.24.0@sha256:f659e0c7589ef608805887ab0d668f67c4b5d5ce0612e62538b17322a92f928d
AS
build
ARG
TARGETPLATFORM
ARG
BUILDPLATFORM
RUN
set
-ex
;
\
echo
"I am running on
$BUILDPLATFORM
, building for
$TARGETPLATFORM
"
;
\
uname
-a
;
\
true
WORKDIR
/usr/local/renovate
WORKDIR
/usr/local/renovate
ENV
CI=1 npm_config_modules_cache_max_age=0
ENV
CI=1 npm_config_modules_cache_max_age=0 \
npm_config_loglevel=info \
ARCH=arm64
COPY
pnpm-lock.yaml ./
COPY
pnpm-lock.yaml ./
# trim `linux/` from TARGETPLATFORM
# replace `amd64` with `x64` for `node`
# set `npm_config_arch` for `prebuild-install`
# set `npm_config_platform_arch` for `install-artifact-from-github`
# only fetch deps from lockfile https://pnpm.io/cli/fetch
# only fetch deps from lockfile https://pnpm.io/cli/fetch
RUN
corepack pnpm fetch
--prod
RUN
set
-ex
;
\
arch
=
${
TARGETPLATFORM
:6
}
;
\
export
npm_config_arch
=
${
arch
/amd64/x64
}
npm_config_platform_arch
=
${
arch
/amd64/x64
}
;
\
corepack pnpm fetch
--prod
;
\
true
COPY
. ./
COPY
. ./
...
@@ -33,10 +51,11 @@ RUN set -ex; \
...
@@ -33,10 +51,11 @@ RUN set -ex; \
# test
# test
COPY
tools/docker/bin/ /usr/local/bin/
COPY
tools/docker/bin/ /usr/local/bin/
# RE2 doesn't work on cross compile
ENV
RENOVATE_X_IGNORE_RE2=true
RUN
set
-ex
;
\
RUN
set
-ex
;
\
renovate
--version
;
\
renovate
--version
;
\
renovate-config-validator
;
\
renovate-config-validator
;
\
node
-e
"new require('re2')('.*').exec('test')"
;
\
true
true
# --------------------------------------
# --------------------------------------
...
@@ -68,8 +87,7 @@ RUN set -ex; \
...
@@ -68,8 +87,7 @@ RUN set -ex; \
RUN
set
-ex
;
\
RUN
set
-ex
;
\
renovate
--version
;
\
renovate
--version
;
\
renovate-config-validator
;
\
node
-e
"new require('re2')('.*').exec('test');new require('better-sqlite3')(':memory:')"
;
\
node
-e
"new require('re2')('.*').exec('test')"
;
\
true
true
LABEL
\
LABEL
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment