From 12d3d33c368920aaa5843018702f39dcc62fe3f7 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 10 Mar 2025 15:20:29 +0100 Subject: [PATCH] update Dockerfile to Debian bookworm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f054eaf..0717e5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:jessie +FROM debian:bookworm MAINTAINER Yury Evtikhov # # This Dockerfile is intended only for test/development use. @@ -9,7 +9,7 @@ ENV DEBIAN_FRONTEND noninteractive # Update and Upgrade system RUN apt-get -y update && \ - apt-get -y install curl git-core php5-cli php5-curl php5-json php5-sqlite && \ + apt-get -y install curl git-core php8.2-cli php8.2-curl php8.2-sqlite3 && \ rm -rf /var/lib/apt/lists/* RUN mkdir /app RUN git clone --recursive https://github.com/tuxis-ie/nsedit.git /app/nsedit