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 204b290 commit 0d96284
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The list of contributors in alphabetical order:
- `Leticia Wanderley <https://orcid.org/0000-0003-4649-6630>`_
- `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>`_
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Version 0.9.2 (UNRELEASED)
--------------------------

- Changes workflow scheduler logging behaviour to also report the main reason behind scheduling errors to the users.
- Fixes runtime uWSGI warning by rebuilding uWSGI with the PCRE support.

Version 0.9.1 (2023-09-27)
--------------------------
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@ RUN apt-get update -y && \
apt-get install --no-install-recommends -y \
gcc \
git \
vim-tiny \
libffi-dev \
procps \
libpcre3 \
libpcre3-dev \
libpython3.8 \
procps \
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 && \
apt-get remove -y \
Expand Down

0 comments on commit 0d96284

Please sign in to comment.