elon_itsz / Dockerfile
ladogton2010's picture
test database 6
c76e019
raw
history blame
231 Bytes
FROM debian:12.6
RUN apt update -y
RUN apt upgrade -y
RUN apt install -y apache2
RUN apt install -y php php-mysql
RUN apt clean
RUN rm -rf /var/lib/apt/lists/*
COPY app/ app/
WORKDIR app
EXPOSE 7860
CMD ["php","-S","0.0.0.0:7860"]