diff --git a/containers/Dockerfile-bilby b/containers/Dockerfile-bilby
new file mode 100644
index 0000000000000000000000000000000000000000..45a53475d2e197940d915a3b2e66f8f27c0c4917
--- /dev/null
+++ b/containers/Dockerfile-bilby
@@ -0,0 +1,7 @@
+FROM bilbydev/bilby-test-suite-python37
+
+LABEL name="bilby" \
+maintainer="Gregory Ashton <gregory.ashton@ligo.org>" \
+date="20190130"
+
+RUN pip install bilby
diff --git a/containers/Singularity.0.3.5 b/containers/Singularity.0.3.5
new file mode 100644
index 0000000000000000000000000000000000000000..1894ce41b3dce88ba056d589b4617ed6000bb94c
--- /dev/null
+++ b/containers/Singularity.0.3.5
@@ -0,0 +1,14 @@
+Bootstrap: docker
+From: bilbydev/bilby-test-suite-python37
+
+%help
+A singularity container for running bilby scripts. To use, simply execute the
+container, providing the bilby_script and any additional arguments. E.g.,
+
+./name_of_this_container.simg run_script.py
+
+%post
+pip install bilby==0.3.5
+
+%runscript
+exec /opt/conda/bin/python "$@"