diff --git a/.dockerignore b/.dockerignore index f72e8b1..8f45f6a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,3 +10,5 @@ !translations !static !assets +!test_data +test_data/10.14469_hpc_* diff --git a/Dockerfile b/Dockerfile index e6685cf..22bbcfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,4 +26,7 @@ RUN cp -r ./static/. ${INVENIO_INSTANCE_PATH}/static/ && \ invenio collect --verbose && \ invenio webpack buildall +# Make directory owned by Invenio user +RUN chown -R invenio test_data/ + ENTRYPOINT [ "bash", "-c"]