mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
12 lines
475 B
Docker
12 lines
475 B
Docker
FROM ghcr.io/front-matter/invenio-rdm-starter:v12.0.13.4
|
|
|
|
# Copy config and assets
|
|
COPY invenio.cfg /opt/invenio/var/instance/invenio.cfg
|
|
COPY assets /opt/invenio/var/instance/static/custom_assets
|
|
|
|
# Add the customisation plugin
|
|
RUN /opt/invenio/.venv/bin/python -m ensurepip
|
|
COPY plugin /opt/invenio/var/instance/static/plugin
|
|
RUN /opt/invenio/.venv/bin/python -m pip install /opt/invenio/var/instance/static/plugin
|
|
RUN /opt/invenio/.venv/bin/python -m pip uninstall -y pip
|