mirror of https://github.com/dnomd343/echoIP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
398 B
13 lines
398 B
FROM debian
|
|
COPY . /root
|
|
ADD ./conf/docker/init.sh /
|
|
RUN mkdir -p /var/www/echoIP \
|
|
&& mv /root/* /var/www/echoIP/ \
|
|
&& apt update \
|
|
&& apt install -y nginx curl \
|
|
&& apt install -y php7.3 php7.3-fpm php7.3-sqlite3 \
|
|
&& apt install -y nodejs \
|
|
&& apt clean \
|
|
&& cp /var/www/echoIP/conf/nginx/docker.conf /etc/nginx/conf.d \
|
|
&& chmod +x /init.sh
|
|
CMD ["sh","init.sh"]
|
|
|