test pkg/dummy

Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
Avi Deitcher
2022-05-25 08:09:15 -10:00
parent 0cb96dcfa0
commit 857f53cdff
5 changed files with 46 additions and 0 deletions

9
pkg/dummy/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM linuxkit/alpine:5d89cd05a567f9bfbe4502be1027a422d46f4a75 AS build
RUN apk add --no-cache --initdb make
FROM scratch
ENTRYPOINT []
CMD []
WORKDIR /
COPY --from=build /usr/bin/make /usr/bin/
COPY infile infile

1
pkg/dummy/build.yml Normal file
View File

@@ -0,0 +1 @@
image: dummy

1
pkg/dummy/infile Normal file
View File

@@ -0,0 +1 @@
This is a silly input file for testing.