File size: 231 Bytes
07f5488
 
 
 
 
c76e019
07f5488
 
4e16b18
 
07f5488
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]