We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef22a78 commit 92860e2Copy full SHA for 92860e2
.github/workflows/release.yml
@@ -466,13 +466,7 @@ jobs:
466
header('{}: assembling image for: {}'.format(base_image, container_arch))
467
468
if base_tag:
469
- # FIXME exceptions for RISC-V
470
- # use 'edge' with Alpine
471
- # https://gitlab.alpinelinux.org/alpine/aports/-/issues/13269
472
- if container_arch == 'riscv64' and base_image == 'alpine':
473
- container_base = 'docker://{}:edge'.format(base_image)
474
- else:
475
- container_base = 'docker://{}:{}'.format(base_image, base_tag)
+ container_base = 'docker://{}:{}'.format(base_image, base_tag)
476
else:
477
container_base = base_image
478
0 commit comments