php-test1 / Dockerfile
morrispetris's picture
Update Dockerfile
4778b1b
raw
history blame
163 Bytes
FROM ubuntu:22.04
RUN apt install php
WORKDIR /var/www/html
COPY index.php /var/www/html
EXPOSE 7860
CMD ["php", "-S", "0.0.0.0:7860", "-t", ""/var/www/html"]