Tallermixto / Dockerfile
Rafa01020's picture
creamos index.php y Dockerfile
b3c102e
raw
history blame
149 Bytes
FROM debian:12.6
RUN apt update -y
RUN apt update -y
RUN apt install -y php
COPY index.php index.php
EXPOSE 7869
CMD ["php","-S","0.0.0.0:7860"]