Dockerfile (323B)
1FROM ubuntu:20.04 2 3RUN apt update && apt install -y nginx php-fpm php-sqlite3 sqlite3 4COPY nginx.conf /etc/nginx/nginx.conf 5 6COPY entrypoint.sh /root 7RUN chmod +x /root/entrypoint.sh 8 9ENV TZ=UTC 10RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime 11RUN echo $TZ > /etc/timezone 12 13WORKDIR /service 14ENTRYPOINT /root/entrypoint.sh