30 | I heard you like containers, so I put your containers in a box. 31 |
32 | 33 | 34 | -------------------------------------------------------------------------------- /exercises/refdata/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:16.04 2 | 3 | COPY words /ref/ 4 | VOLUME /ref 5 | -------------------------------------------------------------------------------- /exercises/ubuntu-with-curl/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu 2 | RUN apt-get update && apt-get install -y curl 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |