Skip to content

Commit

Permalink
Upgrade to 7.60 Nmap release
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Aug 2, 2017
1 parent 47c1e77 commit fa92d1f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apk add --update --no-cache --virtual .build-deps \
curl \

&& curl -fL -o /tmp/nmap.tar.bz2 \
https://nmap.org/dist/nmap-7.50.tar.bz2 \
https://nmap.org/dist/nmap-7.60.tar.bz2 \
&& tar -xjf /tmp/nmap.tar.bz2 -C /tmp \
&& cd /tmp/nmap* \
&& ./configure \
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@


IMAGE_NAME := instrumentisto/nmap
VERSION ?= 7.50
TAGS ?= 7.50,7,latest
VERSION ?= 7.60
TAGS ?= 7.60,7,latest

no-cache ?= no

Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
Nmap Docker Image
=================

[![GitHub release](https://img.shields.io/github/release/instrumentisto/nmap-docker-image.svg)](https://hub.docker.com/r/instrumentisto/nmap/tags)
[![Build Status](https://travis-ci.org/instrumentisto/nmap-docker-image.svg?branch=master)](https://travis-ci.org/instrumentisto/nmap-docker-image)
[![Docker Pulls](https://img.shields.io/docker/pulls/instrumentisto/nmap.svg)](https://hub.docker.com/r/instrumentisto/nmap)
[![Based on](https://img.shields.io/badge/based%20on-alpine-blue.svg)][12]
[![GitHub release](https://img.shields.io/github/release/instrumentisto/nmap-docker-image.svg)](https://hub.docker.com/r/instrumentisto/nmap/tags) [![Build Status](https://travis-ci.org/instrumentisto/nmap-docker-image.svg?branch=master)](https://travis-ci.org/instrumentisto/nmap-docker-image) [![Docker Pulls](https://img.shields.io/docker/pulls/instrumentisto/nmap.svg)](https://hub.docker.com/r/instrumentisto/nmap) [![Based on](https://img.shields.io/badge/based%20on-alpine-blue.svg)][12]



Expand Down
2 changes: 1 addition & 1 deletion hooks/post_push
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}

# Tag and push image for each additional tag
for tag in {7.50,7,latest}; do
for tag in {7.60,7,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done

0 comments on commit fa92d1f

Please sign in to comment.