BD-503-OSEGUERA / Dockerfile
EstebanOM's picture
A帽adido Dockerfile e index.php para la configuraci贸n inicial
29b5865
raw
history blame
No virus
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"]