CoolFace
Apppublic

Esteban-O-M/JavaScript

sourceHugging Facecc-by-nc-nd-4.0updated 1y agoView on Hugging Face
0likes
Dockerfile14 linesDownload Raw Back to root
1FROM ubuntu:24.042RUN apt -y update3RUN apt -y upgrade4 5RUN apt install -y apache2 php6RUN sed -i 's/Listen 80/Listen 7860/g' /etc/apache2/ports.conf7RUN chmod 777 -R /var/log/apache2 /var/run/apache2; ls -la /var/log/apache28RUN rm /var/www/html/index.html9COPY app /var/www/html10 11CMD \12service apache2 start; \13tail -F keep.run14