## 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 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
