We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d553335 commit 4cbba19Copy full SHA for 4cbba19
2 files changed
.github/workflows/codebuild-poc.yml
@@ -0,0 +1,10 @@
1
+name: CodeBuild Runner POC
2
+on: [push]
3
+jobs:
4
+ custom-container-test:
5
+ runs-on:
6
+ - codebuild-RossGhRunnerPoc-${{ github.run_id }}-${{ github.run_attempt }}
7
+ - instance-size:small
8
+ - image:501215020883.dkr.ecr.eu-central-1.amazonaws.com/gha-runner/ross-poc:latest
9
+ steps:
10
+ - run: echo "Hello World!"
gha-poc/custom-container-dockerfile
@@ -0,0 +1,3 @@
+FROM public.ecr.aws/amazonlinux/amazonlinux:2023
+
+ENTRYPOINT echo "I'm a custom container!"
0 commit comments