izonder / dany-ci

Docker CI image with Node.js and Yarn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Docker CI image with Node.js and Yarn

License:MIT License


Languages

Language:Dockerfile 100.0%