diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..4891d9381227f94f57b5db82effcf4bf057bf8eb
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM python:3.11
+
+ARG ARTIFACT_VERSION
+
+RUN pip install \
+    --pre \
+    --extra-index-url https://artifactory.software.geant.org/artifactory/api/pypi/geant-swd-pypi/simple \
+    geant-service-orchestrator==${ARTIFACT_VERSION}
+
+CMD ["tail", "-f", "/dev/null"]