Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleSimplified Docker Strategy - assumes the file resides in the Code base
FROM maven as build
WORKDIR /app
# Add the full source dir into the image
ADD * /app/


# Some other strategy will be needed for inserting COPY docker.local.cfg and build.properties
COPY ??/app/local.cfg
# In the /app/DSpace 4/5 build
COPY ??/docker.build.properties /app/build.properties

This will likely require the creation of a .dockerignore file for times when the build is run from a user's desktop

...