FROM httpd:alpine
COPY 100MB.zip /usr/local/apache2/htdocs/
$ docker build -t myhttpd .
Sending build context to Docker daemon 104.9MB
Step 1/2 : FROM httpd:alpine as chmod
---> 8014d2ecbd73
Step 2/2 : COPY 100MB.zip /usr/local/apache2/htdocs/
---> 43a63837255a
Removing intermediate container d067956e4b80
Successfully built 43a63837255a
Successfully tagged myhttpd:latest
$ docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
myhttpd latest 29172fbda220 2 minutes ago 191MB
httpd alpine 8014d2ecbd73 2 days ago 86.4MB