From 7812eb949f88eed90b612862f76eaed3dafbac49 Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Wed, 24 May 2017 10:39:45 -0500 Subject: [PATCH] static --- static/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 static/Dockerfile 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