mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 10:58:41 +00:00
fix: 3b5e29f417
This commit is contained in:
parent
0d97897d92
commit
aa5e3063dc
@ -5,6 +5,14 @@ ARG CLONE_ADDFLAG
|
|||||||
ADD . /opt/uoj
|
ADD . /opt/uoj
|
||||||
WORKDIR /opt/uoj
|
WORKDIR /opt/uoj
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN dpkg -s gnupg 2>/dev/null || (apt-get update && apt-get install -y gnupg) &&\
|
||||||
|
echo "deb http://ppa.launchpad.net/stesie/libv8/ubuntu bionic main" | tee /etc/apt/sources.list.d/stesie-libv8.list && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D858A0DF &&\
|
||||||
|
apt-get update && apt-get install -y git vim ntp zip unzip curl wget apache2 libapache2-mod-xsendfile libapache2-mod-php php php-dev php-pear php-zip php-mysql php-mbstring php-gd php-intl php-xsl g++ make re2c libv8-7.5-dev libyaml-dev &&\
|
||||||
|
yes | pecl install yaml &&\
|
||||||
|
git clone https://github.com/phpv8/v8js.git --depth=1 -b 2.1.2 /tmp/pear/download/v8js-master && cd /tmp/pear/download/v8js-master &&\
|
||||||
|
phpize && ./configure --with-php-config=/usr/bin/php-config --with-v8js=/opt/libv8-7.5 && make install && cd -
|
||||||
|
|
||||||
# Install environment and set startup script
|
# Install environment and set startup script
|
||||||
RUN sh web/install.sh -p && echo "\
|
RUN sh web/install.sh -p && echo "\
|
||||||
#!/bin/sh\n\
|
#!/bin/sh\n\
|
||||||
|
@ -17,7 +17,7 @@ getAptPackage(){
|
|||||||
apt-get update && apt-get install -y git vim ntp zip unzip curl wget apache2 libapache2-mod-xsendfile libapache2-mod-php php php-dev php-pear php-zip php-mysql php-mbstring php-gd php-intl php-xsl g++ make re2c libv8-7.5-dev libyaml-dev
|
apt-get update && apt-get install -y git vim ntp zip unzip curl wget apache2 libapache2-mod-xsendfile libapache2-mod-php php php-dev php-pear php-zip php-mysql php-mbstring php-gd php-intl php-xsl g++ make re2c libv8-7.5-dev libyaml-dev
|
||||||
# Install PHP extensions
|
# Install PHP extensions
|
||||||
yes | pecl install yaml
|
yes | pecl install yaml
|
||||||
git clone https://github.com/phpv8/v8js.git --depth=1 -b php7 /tmp/pear/download/v8js-master && cd /tmp/pear/download/v8js-master
|
git clone https://github.com/phpv8/v8js.git --depth=1 -b 4c026f3fb291797c109adcabda6aeba6491fe44f /tmp/pear/download/v8js-master && cd /tmp/pear/download/v8js-master
|
||||||
phpize && ./configure --with-php-config=/usr/bin/php-config --with-v8js=/opt/libv8-7.5 && make install && cd -
|
phpize && ./configure --with-php-config=/usr/bin/php-config --with-v8js=/opt/libv8-7.5 && make install && cd -
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,12 +96,12 @@ initProgress(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
prepProgress(){
|
prepProgress(){
|
||||||
getAptPackage;setLAMPConf;setWebConf
|
setLAMPConf;setWebConf
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ $# -le 0 ]; then
|
if [ $# -le 0 ]; then
|
||||||
echo 'Installing UOJ System web...'
|
echo 'Installing UOJ System web...'
|
||||||
prepProgress;initProgress
|
getAptPackage;prepProgress;initProgress
|
||||||
fi
|
fi
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
Loading…
Reference in New Issue
Block a user