Compare commits

..

No commits in common. "7bd20d34955aa60f59d809a3f485df4442530fbb" and "b767272cf1e49b12e8c0ef8eae6a830f8908ffc1" have entirely different histories.

3 changed files with 0 additions and 21 deletions

View File

@ -1,2 +0,0 @@
build-%:
make -C $* build

View File

@ -1,13 +0,0 @@
FROM debian:stable
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt install -y slapd \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 389
EXPOSE 636
ENTRYPOINT ["/usr/sbin/slapd"]
CMD []

View File

@ -1,6 +0,0 @@
DOCKER ?= docker
IMAGE ?= unit/slapd
.PHONY: build
build:
$(DOCKER) build -t $(IMAGE) .