andrefreitas
6/30/2015 - 10:48 AM

problem description

problem description

docker build -t ncrawler .
docker run -d -p 5001:80 ncrawler
curl http://192.168.59.103:5001
FROM ubuntu:14.04

RUN echo "Hello from docker" > index.html
RUN sudo apt-get install python3
RUN python3 -m http.server 80

EXPOSE 80