I would like to be able to create this kind of Dockerfile ``` FROM alpine AS builder RUN echo "coucou depuis le builder" > /coucou FROM ubuntu COPY --from=builder /coucou /coucou ``` Work in progreess...