From 1d713bdcda68067ed96f6eda9623b21b5250373e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 11:12:24 +0000 Subject: [PATCH 1/2] fix: bump php from 7.4.12-apache to 8.2.2-apache Bumps php from 7.4.12-apache to 8.2.2-apache. --- updated-dependencies: - dependency-name: php dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fea7806..875cb93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM composer:2.1.3 as composer ######################################## -FROM php:7.4.12-apache AS prod +FROM php:8.2.2-apache AS prod RUN (curl -sL https://deb.nodesource.com/setup_19.x | bash) \ && apt-get update \ From f8498a232814b19d9626996cb703fcf6f9f02a5e Mon Sep 17 00:00:00 2001 From: PedroTroller Date: Sat, 4 Feb 2023 13:36:52 +0100 Subject: [PATCH 2/2] chore: update docker image deps --- Dockerfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 875cb93..f3882f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,18 +7,18 @@ FROM php:8.2.2-apache AS prod RUN (curl -sL https://deb.nodesource.com/setup_19.x | bash) \ && apt-get update \ && apt-get install -y --no-install-recommends \ - git=1:2.20.1-2+deb10u7 \ - libghc-gnuidn-dev=0.2.2-7+b1 \ - locales=2.28-10+deb10u2 \ - nodejs=19.6.0-deb-1nodesource1 \ - perl=5.28.1-6+deb10u1 \ - python3=3.7.3-1 \ - python3-pip=18.1-5 \ - ruby-full=1:2.5.1 \ - unzip=6.0-23+deb10u3 \ - zlib1g-dev=1:1.2.11.dfsg-1+deb10u2 \ - && pip3 install docutils==0.14 \ - && gem install bundler -v 2.3.26 \ + git \ + locales \ + libidn11-dev \ + nodejs \ + perl \ + python3 \ + python3-pip \ + ruby-full \ + unzip \ + zlib1g-dev \ + && pip3 install docutils==0.19 \ + && gem install bundler -v 2.4.6 \ && rm -rf /var/lib/apt/lists/* \ && python3 --version \ && ruby --version \