Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

alephpiece/docker-antmoc-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Layers Version Commit Docker Pulls Automated Build

Supported tags

  • 0.1.14, 0.1.15

How to use

  1. Install docker engine

  2. Pull the image

docker pull leavesask/antmoc-ci:<tag>
  1. Run the image interactively
docker run -it --rm leavesask/antmoc-ci:<tag>

How to build

The base image is Spack.

make

It is highly recommended that you build the image with make.

# Build an image for code coverage
make

# Build and publish the image
make release

docker build

As an alternative, you can build the image with docker build command.

docker build \
        --build-arg SPACK_IMAGE="spack/ubuntu-bionic" \
        --build-arg SPACK_VERSION="latest" \
        --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
        --build-arg VCS_REF=`git rev-parse --short HEAD` \
        -t my-repo/antmoc-ci:latest .