This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
build-push-action/test/nocachefilter.Dockerfile

10 lines
161 B
Docker
Raw Normal View History

2025-06-05 13:09:30 +08:00
# syntax=docker/dockerfile:1
FROM busybox AS base
RUN echo "Hello world!" > /hello
FROM alpine AS build
COPY --from=base /hello /hello
RUN uname -a
FROM build