diff --git a/Singularity b/Singularity
new file mode 100644
index 0000000000000000000000000000000000000000..02d4235acd0135e5d10908fd65dab882f77a536a
--- /dev/null
+++ b/Singularity
@@ -0,0 +1,21 @@
+Bootstrap:docker  
+From:ubuntu:latest  
+
+%labels
+MAINTAINER Vanessasaur
+SPECIES Dinosaur
+
+%environment
+RAWR_BASE=/code
+export RAWR_BASE
+
+%runscript
+echo "This gets run when you run the image!" 
+exec /bin/bash /code/rawr.sh "$@"  
+
+%post  
+echo "This section happens once after bootstrap to build the image."  
+mkdir -p /code  
+apt-get install vim  
+echo "RoooAAAAR" >> /code/rawr.sh
+chmod u+x /code/rawr.sh  
\ No newline at end of file