Initial version.

This commit is contained in:
Nick Penkov
2018-01-26 12:38:19 +01:00
parent 29be16c897
commit 173d059c82
10 changed files with 522 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM alpine:3.7
WORKDIR /app
ADD ldap-pass-webui /app/ldap-pass-webui
ADD static /app/static
ADD templates /app/templates
RUN chmod +x /app/ldap-pass-webui
EXPOSE 8080
ENTRYPOINT [ "/app/ldap-pass-webui" ]