-
Notifications
You must be signed in to change notification settings - Fork 424
DL3023
José Lorenzo Rodríguez edited this page Feb 4, 2018
·
1 revision
FROM debian:jesse as build
COPY --from=build some stuff ./
FROM debian:jesse as build
RUN stuff
FROM debian:jesse
COPY --from=build some stuff ./
Trying to copy from the same image the instruction is running in results in an error.