start Dockerfile for tests

This commit is contained in:
Philipp Kunz 2016-06-14 08:49:13 +02:00
parent 198d823f01
commit 6aed9e98e5
3 changed files with 58 additions and 0 deletions

54
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,54 @@
image: hosttoday/ht-docker-dbase
services:
- docker:dind
stages:
- build
- test
- release
- trigger
before_script:
- npm uninstall -g npmci
- npm install -g npmci
- npmci prepare docker
build:
stage: build
script:
- npmci build docker
tags:
- lossless
- priv
test:
stage: test
script:
- npmci test docker
only:
- master
tags:
- lossless
- priv
release:
stage: release
script:
- npmci publish npm
only:
- master
tags:
- lossless
- priv
trigger:
stage: trigger
script:
- npmci trigger
only:
- master
tags:
- lossless
- priv

3
.npmignore Normal file
View File

@ -0,0 +1,3 @@
Dockerfile
coverage/
docs/

1
Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM hosttoday/ht-docker-node:lts