FROM debian:12 RUN apt-get update && apt-get upgrade -y && apt-get clean RUN apt-get install -y supervisor apache2 php libapache2-mod-php php-mbstring php-zip curl git openscad zip RUN apt-get clean RUN chown -R www-data:www-data /var/www RUN curl https://files.openscad.org/snapshots/OpenSCAD-2024.03.28.ai18952-x86_64.AppImage > /tmp/openscad RUN chmod +x /tmp/openscad WORKDIR /opt RUN /tmp/openscad --appimage-extract RUN ln -s /opt/squashfs-root/usr/bin/openscad /usr/local/bin/openscad USER 33:33 WORKDIR /var/www RUN mkdir -p /var/www/html RUN rm -rf /var/www/html/* RUN ln -s /var/www/src/index.php /var/www/html/index.php RUN mkdir queue RUN git clone https://git.c3re.de/dirk/AuerNameTag.git ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf ADD src /var/www/src USER root CMD ["/usr/bin/supervisord", "-c" , "/etc/supervisor/conf.d/supervisord.conf"]