first-space / Dockerfile
chartManD's picture
mostrar ip
ee595bc
raw
history blame
260 Bytes
larFROM debian:12.6
RUN apt update -y
RUN apt upgrade -y
RUN apt install -y openssh-server
RUN apt install -y apache2
RUN apt install -y php
RUN ipconfig
RUN rm -rf /var/lib/apt/lists/*
COPY index.php index.php
CMD ["php", "-S", "0.0.0.0:7680", "./index.php"]