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.
1 parent bb542e7 commit 68ef325Copy full SHA for 68ef325
.github/workflows/build_containers.yml
@@ -38,7 +38,8 @@ jobs:
38
- name: Build and push Docker image
39
uses: docker/build-push-action@v6
40
with:
41
- context: .
+ context: ./hack
42
+ file: Dockerfile.ci
43
push: true
44
tags: |
45
ghcr.io/devlabfoundry/aws-cli-auth-ci:${{ inputs.semver }}
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