mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
using && instead ;
This commit is contained in:
parent
b1f3deea7e
commit
2f5d38d5e5
22
.github/workflows/Dockerfile.ci.alpine
vendored
22
.github/workflows/Dockerfile.ci.alpine
vendored
@ -48,15 +48,25 @@ RUN cp target/lldap /lldap/ && \
|
|||||||
/lldap/app/
|
/lldap/app/
|
||||||
|
|
||||||
WORKDIR /lldap
|
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 .; \
|
||||||
|
# ls -al .; \
|
||||||
|
# ls -al app/; \
|
||||||
|
# cat app/index.html; \
|
||||||
|
# ls -al app/static; \
|
||||||
|
# ls -al app/static/fonts;
|
||||||
|
|
||||||
RUN set -x \
|
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/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 \
|
&& for file in $(cat /lldap/app/static/fonts/fonts.txt); do wget -P app/static/fonts "$file"; done \
|
||||||
&& chmod a+r -R .; \
|
&& chmod a+r -R . \
|
||||||
ls -al .; \
|
&& ls -al . \
|
||||||
ls -al app/; \
|
&& ls -al app/ \
|
||||||
cat app/index.html; \
|
&& cat app/index.html \
|
||||||
ls -al app/static; \
|
&& ls -al app/static \
|
||||||
ls -al app/static/fonts;
|
&& ls -al app/static/fonts
|
||||||
|
|
||||||
FROM alpine:3.16
|
FROM alpine:3.16
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
Loading…
Reference in New Issue
Block a user