Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 43cc1ba

Browse files
committed
Dockerfile.invocation-image: Fix for multi-arch
The container used for compiling the application is only available on amd64. This change uses a multi-arch golang container and also fixes an issue where the apt cache can be out-of-date. Fixes Bug #611 Signed-off-by: Ricardo Salveti <[email protected]> Reported-by: Andy Doan <[email protected]>
1 parent c9eb813 commit 43cc1ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.invocation-image

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG ALPINE_VERSION=3.10.1
22

3-
FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
3+
FROM golang:1.13.0 AS build
44

5-
RUN apt-get install -y -q --no-install-recommends \
5+
RUN apt-get update -qq && apt-get install -y -q --no-install-recommends \
66
coreutils \
77
util-linux \
88
uuid-runtime

0 commit comments

Comments
 (0)