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

[SETUP]: Bump php from 8.2.21-fpm to 8.2.22-fpm in /docker/app/php8.2 #568

Merged
Merged
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
2 changes: 1 addition & 1 deletion docker/app/php8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2.21-fpm
FROM php:8.2.22-fpm

ARG USER_ID
ARG GROUP_ID
Expand All @@ -6,7 +6,7 @@
ARG XDEBUG_VERSION

# Do all apt-get installs on one line so they are installed on the same layer
RUN set -eux; \

Check warning on line 9 in docker/app/php8.2/Dockerfile

View workflow job for this annotation

GitHub Actions / lint-docker

Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`
apt-get -y update; \
apt-get -y install git less zip unzip zlib1g-dev sendmail libicu-dev g++ libpng-dev libzip-dev libmagickwand-dev --no-install-recommends; \
apt-get clean && apt-get autoremove; \
Expand Down
Loading