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 \