Sha256: bb7ddc04ce721a11b5e0a1189003aa8f2ae3db7864c1f3e68936a189af70d858

Contents?: true

Size: 479 Bytes

Versions: 17

Compression:

Stored size: 479 Bytes

Contents

.DEFAULT_GOAL := help
SHELL := /bin/bash

.PHONY: help
help:
	@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: build
build:
	docker pull `grep "FROM " Dockerfile | cut -d ' ' -f 2` || true
	docker build \
		--build-arg HTTP_PROXY="${HTTP_PROXY}" \
		--build-arg HTTPS_PROXY="${HTTP_PROXY}" \
		--build-arg NO_PROXY="${NO_PROXY}" \
		-t govuk/notify-ruby-client-builder \
		.

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
notifications-ruby-client-5.1.2 docker/Makefile
notifications-ruby-client-5.1.1 docker/Makefile
notifications-ruby-client-5.1.0 docker/Makefile
notifications-ruby-client-4.0.0 docker/Makefile
notifications-ruby-client-3.1.0 docker/Makefile
notifications-ruby-client-3.0.0 docker/Makefile
notifications-ruby-client-2.10.0 docker/Makefile
notifications-ruby-client-2.9.0 docker/Makefile
notifications-ruby-client-2.8.0 docker/Makefile
notifications-ruby-client-2.7.0 docker/Makefile
notifications-ruby-client-2.6.0 docker/Makefile
notifications-ruby-client-2.5.1 docker/Makefile
notifications-ruby-client-2.5.0 docker/Makefile
notifications-ruby-client-2.4.0 docker/Makefile
notifications-ruby-client-2.3.0 docker/Makefile
notifications-ruby-client-2.2.0 docker/Makefile
notifications-ruby-client-2.1.0 docker/Makefile