no-cache-filters input

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-07-18 17:24:11 +02:00
parent a8d76c070a
commit 5ffbca1432
7 changed files with 73 additions and 42 deletions

View File

@ -0,0 +1,8 @@
FROM busybox AS base
RUN echo "Hello world!" > /hello
FROM alpine AS build
COPY --from=base /hello /hello
RUN uname -a
FROM build