Skip to content

Commit

Permalink
feat: Docker test image
Browse files Browse the repository at this point in the history
Simple Docker image to manually test the build-and-push Github Action
  • Loading branch information
jjmaestro committed Nov 13, 2024
1 parent 926249d commit 739eb39
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions buildkite/docker/testimage/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM busybox:stable AS testimage-base
RUN mkdir /tmp/base

FROM testimage-base AS testimage-target1
RUN mkdir /tmp/base/target1

FROM testimage-base AS testimage-target2-nojdk
RUN mkdir /tmp/base/target2

FROM testimage-target2-nojdk AS testimage-target3
RUN mkdir /tmp/base/target3

0 comments on commit 739eb39

Please sign in to comment.