acemod / docker-armake

Armake installation in Docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Armake

Docker image with Armake and various pre-installed tooling aimed towards Python, to help speed up build times in CI pipelines.

This uses Ubuntu trusty and installs Python and Armake.

Docker Build Statu

Table of Contents

Available tools

  • armake
  • git
  • python3
  • make
  • zip
  • pygithub

Usage

In gitlab-ci:

unit-tests:
    stage: test
    image: acemod/armake:latest
    script:
      - armake --version

circle-ci:

version: 2
jobs:
  build:
    docker:
      - image: acemod/armake
    steps:
      - checkout
      - run:
          name: Armake
          command: |
            armake --help

Contribute

PRs accepted. All issues should be reported in the Github issue tracker.

License

MIT © ACE Mod

About

Armake installation in Docker

License:MIT License


Languages

Language:Dockerfile 100.0%