diff --git a/static/Dockerfile b/static/Dockerfile new file mode 100644 index 0000000..a72718d --- /dev/null +++ b/static/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest +MAINTAINER Faraz Fallahi +RUN \ +apt -y update && \ +apt -y upgrade && \ +apt -y install build-essential git && \ +apt -y autoremove && \ +apt -y autoclean && \ +exit 0