diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0bf9415 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM nginx:alpine +COPY . /usr/share/nginx/html + +# To run the app as a container follow the steps below: +# +# 1) Create the docker image: +# docker build -t visualizing-git . +# +# 2) Run the container in the port 8080: +# docker run -d -p 8080:80 visualizing-git