Skip to content

Commit 739eb39

Browse files
committed
feat: Docker test image
Simple Docker image to manually test the build-and-push Github Action
1 parent 926249d commit 739eb39

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

buildkite/docker/testimage/Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM busybox:stable AS testimage-base
2+
RUN mkdir /tmp/base
3+
4+
FROM testimage-base AS testimage-target1
5+
RUN mkdir /tmp/base/target1
6+
7+
FROM testimage-base AS testimage-target2-nojdk
8+
RUN mkdir /tmp/base/target2
9+
10+
FROM testimage-target2-nojdk AS testimage-target3
11+
RUN mkdir /tmp/base/target3

0 commit comments

Comments
 (0)