also apply to debian dockerfile

This commit is contained in:
Dedy Martadinata 2022-10-05 19:05:35 +07:00 committed by GitHub
parent 1e0b4c413c
commit 6ce906ae19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,12 @@ 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/; \
cat app/static/index.html; \
ls -al app/static; \
ls -al app/static/fonts;
FROM debian:bullseye-slim
ENV UID=1000