We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72312d8 + a31249b commit 373789bCopy full SHA for 373789b
.github/workflows/build_containers.yml
@@ -38,8 +38,9 @@ jobs:
38
- name: Build and push Docker image
39
uses: docker/build-push-action@v6
40
with:
41
- context: .
+ context: ./hack
42
+ file: ./hack/Dockerfile.ci
43
push: true
44
tags: |
- ghcr.io/ensono/aws-cli-auth-ci:${{ inputs.semver }}
45
+ ghcr.io/devlabfoundry/aws-cli-auth-ci:${{ inputs.semver }}
46
platforms: linux/amd64,linux/arm64 # adjust as needed
hack/Dockerfile.ci
@@ -0,0 +1,9 @@
1
+FROM docker.io/zenika/alpine-chrome:124 as chrome
2
+
3
+USER root
4
5
+RUN wget https://dl.google.com/go/go1.25.1.linux-arm64.tar.gz && \
6
+ tar -C /usr/local -xzf go1.25.1.linux-arm64.tar.gz
7
+ENV PATH=$PATH:/usr/local/go/bin
8
9
+RUN apk add build-base
0 commit comments