diff options
| author | wn_ <invalid@email.com> | 2024-07-19 17:56:07 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-07-19 17:57:19 +0000 |
| commit | fd9eabdfdbb7f7b52c76f0ccc40553f2f553b61d (patch) | |
| tree | 2577a376cefd2c2f0ba563095419cce428f1818d /.docker | |
| parent | 7f3129d4f3f0156498cee706dc8fc1e6be27d33c (diff) | |
Fix breakage when 'ALPINE_MIRROR' is not provided.
Related to 7f3129d4f3f0156498cee706dc8fc1e6be27d33c
Diffstat (limited to '.docker')
| -rw-r--r-- | .docker/app/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index 4269f0b17..eb1af1ba9 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -9,7 +9,7 @@ ENV SCRIPT_ROOT=/opt/tt-rss ENV SRC_DIR=/src/tt-rss/ RUN [ ! -z ${ALPINE_MIRROR} ] && \ - sed -i.bak "s#dl-cdn.alpinelinux.org#${ALPINE_MIRROR}#" /etc/apk/repositories && \ + sed -i.bak "s#dl-cdn.alpinelinux.org#${ALPINE_MIRROR}#" /etc/apk/repositories ; \ apk add --no-cache dcron php83 php83-fpm php83-phar php83-sockets php83-pecl-apcu \ php83-pdo php83-gd php83-pgsql php83-pdo_pgsql php83-xmlwriter php83-opcache \ php83-mbstring php83-intl php83-xml php83-curl php83-simplexml \ |