server/Dockerfile
2023-03-01 04:35:27 +01:00

9 lines
257 B
Docker

FROM debian:buster
COPY srcs /root/
RUN yes | apt-get update && \
yes | apt-get install mariadb-server nginx php7.3 php7.3-fpm php7.3-mysql curl php-xml php-mbstring && \
yes | apt-get autoremove
WORKDIR /root/
RUN bash init.sh
ENTRYPOINT bash welcome.sh