From 851429cd360c77adf587c6f31cbc3c0ea918231f Mon Sep 17 00:00:00 2001 From: Dedy Martadinata Date: Wed, 5 Oct 2022 18:40:41 +0700 Subject: [PATCH] Add web override, combine check --- .github/workflows/Dockerfile.ci.alpine | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Dockerfile.ci.alpine b/.github/workflows/Dockerfile.ci.alpine index 3bb133e..9086884 100644 --- a/.github/workflows/Dockerfile.ci.alpine +++ b/.github/workflows/Dockerfile.ci.alpine @@ -39,6 +39,7 @@ RUN if [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \ # Web and App dir COPY docker-entrypoint.sh /docker-entrypoint.sh COPY lldap_config.docker_template.toml /lldap/ +COPY web/index_local.html web/index.html RUN cp target/lldap /lldap/ && \ cp target/migration-tool /lldap/ && \ cp -R web/index.html \ @@ -50,9 +51,11 @@ WORKDIR /lldap RUN set -x \ && for file in $(cat /lldap/app/static/libraries.txt); do wget -P app/static "$file"; done \ && for file in $(cat /lldap/app/static/fonts/fonts.txt); do wget -P app/static/fonts "$file"; done \ - && chmod a+r -R . -RUN ls -al app/static && \ - ls -al app/static/fonts + && chmod a+r -R .; \ + && ls -al .; \ + && ls -al app/static; \ + && cat app/static/index.html; \ + && ls -al app/static/fonts; FROM alpine:3.16 WORKDIR /app