Skip to content

Commit

Permalink
docker: silence uWSGI runtime warning
Browse files Browse the repository at this point in the history
Silences uWSGI runtime warning "!!! no internal routing support, rebuild
with pcre support !!!".
  • Loading branch information
mr-c authored and tiborsimko committed Dec 6, 2023
1 parent f4fd125 commit 8af3f7d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The list of contributors in alphabetical order:
- `Lukas Heinrich <https://orcid.org/0000-0002-4048-7584>`_
- `Marco Donadoni <https://orcid.org/0000-0003-2922-5505>`_
- `Marco Vidal <https://orcid.org/0000-0002-9363-4971>`_
- `Michael R. Crusoe <https://orcid.org/0000-0002-2961-9670>`_
- `Rokas Maciulaitis <https://orcid.org/0000-0003-1064-6967>`_
- `Sinclert Perez <https://www.linkedin.com/in/sinclert>`_
- `Tibor Simko <https://orcid.org/0000-0001-7202-5803>`_
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Version 0.9.2 (UNRELEASED)

- Changes the pagination logic to avoid counting twice the total amount of records.
- Fixes job status consumer exception while attempting to fetch workflow engine logs for workflows could not have been successfully scheduled.
- Fixes runtime uWSGI warning by rebuilding uWSGI with the PCRE support.

Version 0.9.1 (2023-09-27)
--------------------------
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ RUN apt-get update -y && \
apt-get install --no-install-recommends -y \
gcc \
git \
libpcre3 \
libpcre3-dev \
libpython3.8 \
python3-pip \
python3.8 \
python3.8-dev \
python3-pip \
vim-tiny && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r /code/requirements.txt && \
Expand Down

0 comments on commit 8af3f7d

Please sign in to comment.