renaming
diff --git a/containers/common_python/Dockerfile b/containers/common_python/Dockerfile
deleted file mode 100644
index 70b334e..0000000
--- a/containers/common_python/Dockerfile
+++ /dev/null
@@ -1,38 +0,0 @@
-FROM ubuntu
-
-RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --force-yes \
-    curl \
-    gcc \
-    geoip-database \
-    git \
-    graphviz \
-    graphviz-dev \
-    libgeoip1 \
-    libxslt1.1 \
-    libxslt1-dev \
-    libyaml-dev \
-    pkg-config \
-    python-dev \
-    python-httplib2 \
-    python-pip \
-    python-psycopg2 \
-    python-pycurl \
-    tar \
-    wget
-
-RUN pip install \
-    lxml \
-    netaddr \
-    pytz \
-    requests \
-    python-keyczar \
-    pygraphviz \
-    dnslib
-
-RUN easy_install \
-    python_gflags \
-    google_api_python_client \
-    httplib2.ca_certs_locater
-
-RUN easy_install --upgrade httplib2
-
diff --git a/containers/common_python/Makefile b/containers/common_python/Makefile
deleted file mode 100644
index 7731152..0000000
--- a/containers/common_python/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-.PHONY: build
-build: ; docker build --rm -t xos/python_common .
-
-.PHONY: rmi
-rm: ; docker rmi xos/python_common