Don't use pipefail
This commit is contained in:
parent
9d489b0b90
commit
016ed0709f
1 changed files with 2 additions and 2 deletions
|
@ -49,13 +49,13 @@ RUN set -eu; \
|
|||
|
||||
RUN set -eu; \
|
||||
mkdir /var/www/conf; \
|
||||
mkdir -p /var/www/html/extensions; \
|
||||
mkdir -p /var/www/localstore/smwconfig; \
|
||||
mkdir -p /var/www/localstore/images
|
||||
|
||||
# Non-composer based extensions
|
||||
# JsonConfig required by Graph.
|
||||
RUN set -euo pipefail; \
|
||||
mkdir -p /var/www/html/extensions; \
|
||||
RUN set -eu; \
|
||||
cd /var/www/html/extensions; \
|
||||
curl https://extdist.wmflabs.org/dist/extensions/JsonConfig-REL1_35-1b79879.tar.gz |tar -xz; \
|
||||
curl https://extdist.wmflabs.org/dist/extensions/Graph-REL1_35-69ec90a.tar.gz |tar -xz; \
|
||||
|
|
Loading…
Reference in a new issue