* Mon May 12 2025 Brian Read <brianr@koozali.org> 11.0.0-1.sme
- Adding SM2 panel [SME: 13004] - Upgrade to phpsysinfo 3.4.4 - Add code to delete inline styles and add css to make it look better. - version saved / built uses the static version, which means no drops downs and choices.
This commit is contained in:
@@ -1,20 +1,24 @@
|
||||
# phpSysInfo
|
||||
# VERSION 2
|
||||
# VERSION 4
|
||||
|
||||
FROM ubuntu:14.04
|
||||
FROM ubuntu:20.04
|
||||
ENV LC_ALL C.UTF-8
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
ARG http_proxy=""
|
||||
ARG https_proxy=""
|
||||
|
||||
MAINTAINER phpSysInfo
|
||||
|
||||
# Update sources
|
||||
RUN echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list
|
||||
RUN apt-get update
|
||||
RUN apt-get -q update && \
|
||||
apt-get -qy install apache2 php7.4 php7.4-xml php7.4-mbstring libapache2-mod-php7.4 git pciutils && \
|
||||
apt-get clean && \
|
||||
rm -Rf /var/lib/apt/lists/*
|
||||
|
||||
RUN apt-get install -y apache2 php5 git pciutils
|
||||
|
||||
RUN git clone https://github.com/phpsysinfo/phpsysinfo.git /var/www/html/phpsysinfo
|
||||
#RUN cp /var/www/html/phpsysinfo/phpsysinfo.ini.new /var/www/html/phpsysinfo/phpsysinfo.ini
|
||||
RUN cat /var/www/html/phpsysinfo/phpsysinfo.ini.new | sed 's/^LOAD_BAR=false/LOAD_BAR=true/' >/var/www/html/phpsysinfo/phpsysinfo.ini
|
||||
RUN git clone https://github.com/phpsysinfo/phpsysinfo.git /var/www/html/phpsysinfo && \
|
||||
cp /var/www/html/phpsysinfo/phpsysinfo.ini.new /var/www/html/phpsysinfo/phpsysinfo.ini
|
||||
|
||||
ENV APACHE_RUN_DIR /var/run/apache2
|
||||
ENV APACHE_RUN_USER www-data
|
||||
ENV APACHE_RUN_GROUP www-data
|
||||
ENV APACHE_LOG_DIR /var/log/apache2
|
||||
|
Reference in New Issue
Block a user