diff --git a/images/alpine33/Dockerfile b/images/alpine33/Dockerfile index bc1b564..b395429 100644 --- a/images/alpine33/Dockerfile +++ b/images/alpine33/Dockerfile @@ -8,7 +8,7 @@ ENV NODE_VERSION 4.3.0 RUN apk add --update nodejs=${NODE_VERSION}-r0; # Set newman version -ENV NEWMAN_VERSION 2.1.2 +ENV NEWMAN_VERSION 3.0.0 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/alpine33/README.md b/images/alpine33/README.md index f519e4f..1de2c86 100644 --- a/images/alpine33/README.md +++ b/images/alpine33/README.md @@ -1,6 +1,6 @@ # newman_alpine33 -This image runs newman 2.1.2 on node 4.3.0 on Alpine 3.3 +This image runs newman 3.0.0 on node 4.3.0 on Alpine 3.3 Build the image, @@ -11,7 +11,7 @@ docker build -t postman/newman_alpine33 . Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_alpine33/) ```terminal -docker pull postman/newman_alpine33:2.1.2 +docker pull postman/newman_alpine33:3.0.0 ``` then run it diff --git a/images/ubuntu1404/Dockerfile b/images/ubuntu1404/Dockerfile index 017115f..4630c2c 100644 --- a/images/ubuntu1404/Dockerfile +++ b/images/ubuntu1404/Dockerfile @@ -14,7 +14,7 @@ RUN npm install -g n; RUN n ${NODE_VERSION}; # Set newman version -ENV NEWMAN_VERSION 2.1.2 +ENV NEWMAN_VERSION 3.0.0 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/ubuntu1404/README.md b/images/ubuntu1404/README.md index cb4e47f..36c8e34 100644 --- a/images/ubuntu1404/README.md +++ b/images/ubuntu1404/README.md @@ -1,6 +1,6 @@ # newman_ubuntu1404 -This image runs newman 2.1.2 on node 4.3.0 on Ubuntu 14.04.2 +This image runs newman 3.0.0 on node 4.3.0 on Ubuntu 14.04.2 Build the image, @@ -11,7 +11,7 @@ docker build -t postman/newman_ubuntu1404 . Or get it from [docker hub](https://registry.hub.docker.com/u/postman/newman_ubuntu1404/) ```terminal -docker pull postman/newman_ubuntu1404:2.1.2 +docker pull postman/newman_ubuntu1404:3.0.0 ``` then run it diff --git a/package.json b/package.json index b2f2080..4d016ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "newman-docker", - "version": "2.1.2", + "version": "3.0.0", "description": "This repository contains the Dockerfiles and tests for the Newman Docker images.", "scripts": { "docker-build": "./scripts/docker/docker-build.sh",