diff --git a/.dockerignore b/.dockerignore index 78525784cfb9240724e17f05c642364d8f0b9207..0b36e48ab41b59613d6f10901591f60a24f70dae 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,4 @@ -README.md -LICENSE.md -Makefile - +/*.md +/Makefile +/*.sh +/*.yaml diff --git a/Dockerfile b/Dockerfile index 97f104e9c24b568b9245c2c32d9943056827cc47..611a3fab66e596025fb1f2442608b8a90b24f927 100644 --- a/Dockerfile +++ b/Dockerfile @@ -178,5 +178,5 @@ ENV AUTH_LDAP_FILTER="" # If the authenticator is Ldap, specify the attribute to be used as userid ENV AUTH_LDAP_UID_ATTRIBUTE="uid" -ADD docker-entrypoint.sh / +ADD src/docker-entrypoint.sh / ENTRYPOINT ["/docker-entrypoint.sh"] diff --git a/docker-entrypoint.sh b/src/docker-entrypoint.sh similarity index 100% rename from docker-entrypoint.sh rename to src/docker-entrypoint.sh