diff --git a/images/alpine33/Dockerfile b/images/alpine33/Dockerfile index ee52f68..dbccf68 100644 --- a/images/alpine33/Dockerfile +++ b/images/alpine33/Dockerfile @@ -13,7 +13,7 @@ ENV LANGUAGE en_US.UTF-8 RUN apk add --update nodejs=${NODE_VERSION}-r0; # Set newman version -ENV NEWMAN_VERSION 3.1.1 +ENV NEWMAN_VERSION 3.1.2 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/alpine33/README.md b/images/alpine33/README.md index 9fd7631..85439e6 100644 --- a/images/alpine33/README.md +++ b/images/alpine33/README.md @@ -1,6 +1,6 @@ # newman_alpine33 -This image runs newman 3.1.1 on node 4.3.0 on Alpine 3.3 +This image runs newman 3.1.2 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:3.1.1 +docker pull postman/newman_alpine33:3.1.2 ``` then run it diff --git a/images/ubuntu1404/Dockerfile b/images/ubuntu1404/Dockerfile index 0166a33..3d27d6d 100644 --- a/images/ubuntu1404/Dockerfile +++ b/images/ubuntu1404/Dockerfile @@ -19,7 +19,7 @@ RUN npm install -g n; RUN n ${NODE_VERSION}; # Set newman version -ENV NEWMAN_VERSION 3.1.1 +ENV NEWMAN_VERSION 3.1.2 # Install newman RUN npm install -g newman@${NEWMAN_VERSION}; diff --git a/images/ubuntu1404/README.md b/images/ubuntu1404/README.md index e9324e0..7cbf564 100644 --- a/images/ubuntu1404/README.md +++ b/images/ubuntu1404/README.md @@ -1,6 +1,6 @@ # newman_ubuntu1404 -This image runs newman 3.1.1 on node 4.3.0 on Ubuntu 14.04.2 +This image runs newman 3.1.2 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:3.1.1 +docker pull postman/newman_ubuntu1404:3.1.2 ``` then run it diff --git a/package.json b/package.json index 052bb1a..3b91fe8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "newman-docker", - "version": "3.1.1", + "version": "3.1.2", "description": "This repository contains the Dockerfiles and tests for the Newman Docker images.", "scripts": { "docker-build": "./scripts/docker/docker-build.sh",