diff --git a/pica-openldap/Dockerfile b/pica-openldap/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..db3764b2542c8b806f51dca6623026d58ee7a7a2
--- /dev/null
+++ b/pica-openldap/Dockerfile
@@ -0,0 +1,6 @@
+FROM osixia/openldap:1.2.4
+MAINTAINER bonnetst@utc.fr
+
+ADD bootstrap /container/service/slapd/assets/config/bootstrap
+ADD certs /container/service/slapd/assets/certs
+ADD environment /container/environment/01-custom
diff --git a/pica-openldap/Makefile b/pica-openldap/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..071e72db50bf9de35b70f39d94b93c1af6cec3c3
--- /dev/null
+++ b/pica-openldap/Makefile
@@ -0,0 +1,12 @@
+NAME = pica/openldap
+VERSION = 0.0.1
+
+.PHONY: all build build-nocache
+
+all: build
+
+build:
+	docker build -t $(NAME):$(VERSION) --rm .
+
+build:
+	docker build -t $(NAME):$(VERSION) --no-cache --rm .