From 8c8b44baefef55c36030cc48c69192b0f3493a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 8 Sep 2024 19:40:43 +0200 Subject: [PATCH] Use debian bookworm, PHP 8.2 and node 20 for the docker image by default --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd01fded..15049166 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG BASE_IMAGE=debian:bullseye-slim -ARG PHP_VERSION=8.1 +ARG BASE_IMAGE=debian:bookworm-slim +ARG PHP_VERSION=8.2 FROM ${BASE_IMAGE} AS base ARG PHP_VERSION @@ -48,7 +48,7 @@ RUN apt-get update && apt-get -y install \ # Install node and yarn RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ - curl -sL https://deb.nodesource.com/setup_18.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get update && apt-get install -y \ nodejs \ yarn \