Source code of filesite.io.
https://filesite.io
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.
20 lines
780 B
20 lines
780 B
3 years ago
|
FROM alpine
|
||
|
RUN mkdir -p /var/www/machete && \
|
||
|
mkdir -p /var/www/downloads && \
|
||
|
apk add gcc g++ make cmake pkgconf libxml2-dev sqlite-dev && \
|
||
|
cd /var/www/downloads && \
|
||
|
wget "https://nginx.org/download/nginx-1.21.6.tar.gz" && \
|
||
|
wget "https://www.php.net/distributions/php-8.1.6.tar.gz" && \
|
||
|
tar -zxvf nginx-1.21.6.tar.gz && \
|
||
|
tar -zxvf php-8.1.6.tar.gz && \
|
||
|
cd nginx-1.21.6/ && \
|
||
|
./configure --without-http_rewrite_module --without-http_gzip_module && \
|
||
|
make && make install && \
|
||
|
cd ../php-8.1.6/ && \
|
||
|
./configure --enable-fpm && make && make install
|
||
|
##TODO: 下载最新源码,并配置好nginx完成部署
|
||
|
|
||
|
ENTRYPOINT ["/var/www/machete/docker-entrypoint.sh"]
|
||
|
## 默认使用导航站皮肤:webdirectory
|
||
|
CMD ["webdirectory"]
|