Skip to content

Commit

Permalink
Update installed Alpine packages
Browse files Browse the repository at this point in the history
- Replace p7zip with 7zip
- Install 7zip and mercurial on all architectures
  • Loading branch information
jnoordsij committed Jan 13, 2025
1 parent 622faef commit cc197e0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ FROM php:8-alpine AS binary-with-runtime

RUN set -eux ; \
apk add --no-cache --virtual .composer-rundeps \
7zip \
bash \
coreutils \
git \
make \
mercurial \
openssh-client \
patch \
subversion \
tini \
unzip \
zip \
$([ "$(apk --print-arch)" != "x86" ] && echo mercurial) \
$([ "$(apk --print-arch)" != "armhf" ] && echo p7zip)
zip

RUN printf "# composer php cli ini settings\n\
date.timezone=UTC\n\
Expand Down
6 changes: 3 additions & 3 deletions legacy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ FROM php:8-alpine AS binary-with-runtime

RUN set -eux ; \
apk add --no-cache --virtual .composer-rundeps \
7zip \
bash \
coreutils \
git \
make \
mercurial \
openssh-client \
patch \
subversion \
tini \
unzip \
zip \
$([ "$(apk --print-arch)" != "x86" ] && echo mercurial) \
$([ "$(apk --print-arch)" != "armhf" ] && echo p7zip)
zip

RUN printf "# composer php cli ini settings\n\
date.timezone=UTC\n\
Expand Down
6 changes: 3 additions & 3 deletions lts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ FROM php:8-alpine AS binary-with-runtime

RUN set -eux ; \
apk add --no-cache --virtual .composer-rundeps \
7zip \
bash \
coreutils \
git \
make \
mercurial \
openssh-client \
patch \
subversion \
tini \
unzip \
zip \
$([ "$(apk --print-arch)" != "x86" ] && echo mercurial) \
$([ "$(apk --print-arch)" != "armhf" ] && echo p7zip)
zip

RUN printf "# composer php cli ini settings\n\
date.timezone=UTC\n\
Expand Down

0 comments on commit cc197e0

Please sign in to comment.