mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-06 07:51:54 +00:00
14 lines
269 B
Docker
14 lines
269 B
Docker
FROM newnius/php:7.3
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN apt update && \
|
|
apt install -y git vim httpie && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone https://github.com/newnius/YAO-portal.git /var/www/html/
|
|
|
|
ADD bootstrap.sh /etc/
|
|
|
|
CMD /etc/bootstrap.sh
|