Compare commits

..

3 Commits

Author SHA1 Message Date
1bcb1f8fee 2.1.34 2016-06-07 04:52:13 +02:00
d98d8e9667 fix test command for docker 2016-06-07 04:50:36 +02:00
3ac486312e fix README 2016-06-07 04:40:44 +02:00
4 changed files with 4 additions and 7 deletions

View File

@@ -3,7 +3,6 @@ npmci is your friend when it comes to handling npm packages during CI builds. It
## Status
[![build status](https://gitlab.com/pushrocks/npmci/badges/master/build.svg)](https://gitlab.com/pushrocks/npmci/commits/master)
[![Build status](https://ci.appveyor.com/api/projects/status/7h4qq2qtrke5a9vj/branch/master?svg=true)](https://ci.appveyor.com/project/philkunz/npmci/branch/master)
## Usage
npmci is designed to work in docker CI environments. The following docker images come with npmci presinstalled:

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "npmci",
"version": "2.1.33",
"version": "2.1.34",
"description": "",
"main": "dist/index.js",
"bin": {

View File

@@ -172,8 +172,7 @@ export class Dockerfile {
bashBare("docker run -v " +
plugins.path.join(paths.NpmciProjectDir,"./test") + ":/test/ " +
"--name " + this.containerName);
bashBare("docker stop /" + this.containerName);
"--name " + this.containerName + " /test/" + "test_" + this.version);
};
release(){
bashBare("docker tag " + this.getId() + " " + this.releaseTag);