Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ogc-application-catalog/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@

FROM registry.cern.ch/inveniosoftware/almalinux:1

RUN dnf update -y

COPY site ./site
COPY Pipfile Pipfile.lock ./
RUN pipenv install --deploy --system

RUN pip install click limits tomli async_timeout
RUN pip install pillow click limits tomli async_timeout alembic maxminddb referencing bleach

COPY ./docker/uwsgi/ ${INVENIO_INSTANCE_PATH}
COPY ./invenio.cfg ${INVENIO_INSTANCE_PATH}
Expand Down
3 changes: 3 additions & 0 deletions ogc-application-catalog/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ uwsgi = ">=2.0"
uwsgitop = ">=0.11"
uwsgi-tools = ">=1.1.1"

# Build from source to avoid segfaults with psycopg2-binary built against incompatible libs
psycopg2 = "~=2.9.0"

[requires]
python_version = "3.12"

Expand Down
Loading
Loading