Versions Compared

Key

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

...

Code Block
titleBuild docker image
cd <DSPACE-SRC>
--checkout tag--
# NOTE: We are tagging based on the "test" Dockerfile as this is not Production ready yet
docker build -t dspace/dspace:<tag> -f Dockerfile.test .
docker push dspace/dspace:<tag>

cd <ANGULAR-SRC>
--checkout tag--
docker build -t dspace/dspace-angular:<tag> .
docker push dspace/dspace-angular:<tag>

...