We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b3970 commit 0d149ceCopy full SHA for 0d149ce
.github/workflows/all.yml
@@ -8,7 +8,7 @@ jobs:
8
build-and-run:
9
strategy:
10
matrix:
11
- platform: [ubuntu:24.04, fedora:latest]
+ platform: [ubuntu, fedora, alpine]
12
fail-fast: false
13
uses: ./.github/workflows/platform.yml
14
name: ${{ matrix.platform }}
Dockerfile
@@ -1,4 +1,14 @@
1
-ARG platform=ubuntu:24.04
+ARG platform=ubuntu
2
+
3
+FROM ubuntu:24.04 AS ubuntu
4
5
6
+FROM fedora:latest AS fedora
7
+FROM alpine:latest AS alpine
+RUN apk add --no-cache bash
FROM ${platform} AS bench-env
0 commit comments