Rafael226w0559 / Dockerfile
Rafa01020's picture
creamos un texto a index.php Dockerfile
ecd06d8
raw
history blame contribute delete
145 Bytes
FROM debian:12.6
RUN apt update -y
RUN apt upgrade -y
RUN apt install -y php
COPY index.php index.php
CMD ["bash", "-c", "php -S 0.0.0.0:7860 "]