File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,13 +3,19 @@ FROM ubuntu:22.04
33
44# Install dependencies
55RUN apt-get update && apt-get upgrade -y && \
6- DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends libxml2-dev libxslt-dev zlib1g-dev apache2 libgdbm-dev python3-pip liblz4-tool brotli ripgrep gcc make python3-dev wget sudo nodejs npm && \
6+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends libxml2-dev libxslt-dev zlib1g-dev apache2 libgdbm-dev liblz4-tool brotli ripgrep gcc make python3-dev wget sudo nodejs npm python3.10-venv && \
77 apt-get clean && rm -rf /var/lib/apt
88
9+ # Install pip
10+ RUN wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py
11+
912# Install PhiloLogic
1013COPY . /PhiloLogic4
1114WORKDIR /PhiloLogic4
12- RUN sh install.sh && a2enmod rewrite && a2enmod cgi && a2enmod brotli
15+ RUN sh install.sh
16+
17+
18+ RUN a2enmod rewrite && a2enmod cgi && a2enmod brotli
1319
1420
1521# Configure global variables
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ authors = [
1111]
1212license = { file = " LICENSE" }
1313description = " A concordance search engine for TEI-XML"
14- readme = " README" # If your readme file is named README
15- urls = { Homepage = " https://github.com/ARTFL-Project/PhiloLogic5 " }
14+ readme = " README"
15+ urls = { Homepage = " https://github.com/ARTFL-Project/PhiloLogic4 " }
1616
1717requires-python = " >=3.10"
1818dependencies = [
You can’t perform that action at this time.
0 commit comments