Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installed Alpine packages #359

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading