-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use arm64 supported curlimages/curl instead of busyboxplus:curl * use arm64 supported kvij/scuttle instead of redboxoss/scuttle redboxllc/scuttle#60 (comment) * remove explicit GOARCH=amd64 * build arm64 image with qemu, update workflow versions in push.yml * revert pushing worktree for branch working_arm64 by mistake * fix starter dockerfile * revert to buildx version 0.9.1 * keep USER 65532:65532
- Loading branch information
1 parent
55d949e
commit 1441c17
Showing
4 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM grafana/k6:latest | ||
|
||
COPY --from=redboxoss/scuttle:latest scuttle /bin/scuttle | ||
COPY --from=kvij/scuttle:latest scuttle /bin/scuttle | ||
ENTRYPOINT ["scuttle", "k6"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM radial/busyboxplus:curl | ||
FROM curlimages/curl:latest | ||
|
||
# as defined by distroless for nonroot | ||
USER 65532:65532 | ||
COPY --from=redboxoss/scuttle:latest /scuttle /bin/scuttle | ||
COPY --from=kvij/scuttle:latest /scuttle /bin/scuttle |