/dany-ci

Docker CI image with Node.js and Yarn

Primary LanguageDockerfileMIT LicenseMIT

DANY-CI - Docker CI image with Node.js and Yarn

DANY-CI = Docker + Alpine + Node.js + Yarn + CI

Build Docker image

Features

  • Alpine linux as base-image
  • Docker in container
  • Node.js (without NPM)
  • Yarn package manager

How to use?

E.g. .gitlab-ci.yml:

image: izonder/dany-ci:latest

stages:
    - test
    - build

unit:
    stage: test
    scripts:
        - yarn install
        - yarn test

build:
    stage: build
    scripts:
        - yarn install
        - yarn build