Skip to content

Commit 68ef325

Browse files
committed
fix: docker context
1 parent bb542e7 commit 68ef325

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/build_containers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
- name: Build and push Docker image
3939
uses: docker/build-push-action@v6
4040
with:
41-
context: .
41+
context: ./hack
42+
file: Dockerfile.ci
4243
push: true
4344
tags: |
4445
ghcr.io/devlabfoundry/aws-cli-auth-ci:${{ inputs.semver }}

hack/Dockerfile.ci

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)