diff --git a/test/Dockerfile b/test/Dockerfile index e90f4bf..04ea19a 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -1,4 +1,21 @@ ## Creates a docker image of debian + Apache + PHP + Maria DB. # Build the Image and run a Container to test the restore of your cloud_backup. -FROM debian:Bookworm \ No newline at end of file +FROM docker.io/library/debian:bookworm + +MAINTAINER Stephan Wittig <> + +RUN apt update && apt upgrade -y + +RUN apt install --no-install-recommends -y \ + mariadb-server \ + apache2 \ + php8.2 \ + && : + +## + +RUN mkdir -p /opt/cloud_backup \ + && : + +WORKDIR /opt/cloud_backup