diff --git a/CHANGELOG.md b/CHANGELOG.md index 679fbcee..142981d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.2.4 + - Periodic update of debian baseimage and packages + ## 0.2.3 - Periodic update of debian baseimage and packages diff --git a/Makefile b/Makefile index e6e64616..ff81e945 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = osixia/light-baseimage -VERSION = 0.2.3 +VERSION = 0.2.4 .PHONY: all build build-nocache test tag_latest release diff --git a/README.md b/README.md index 06b3a265..d42d6ff5 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [hub]: https://hub.docker.com/r/osixia/light-baseimage/ -Latest release: 0.2.3 - [Changelog](CHANGELOG.md) +Latest release: 0.2.4 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/light-baseimage/)  A Debian based docker image to help you build reliable image quickly. This image provide a simple opinionated solution to build multiple or single process image with minimum of layers and an optimized build. diff --git a/example/multiple-process-image/Dockerfile b/example/multiple-process-image/Dockerfile index 9682f951..2c909c0c 100644 --- a/example/multiple-process-image/Dockerfile +++ b/example/multiple-process-image/Dockerfile @@ -1,6 +1,6 @@ # Use osixia/light-baseimage # https://github.com/osixia/docker-light-baseimage -FROM osixia/light-baseimage:0.2.3 +FROM osixia/light-baseimage:0.2.4 MAINTAINER Your Name # Install multiple process stack, nginx and php5-fpm and clean apt-get files diff --git a/example/single-process-image/Dockerfile b/example/single-process-image/Dockerfile index db107ff7..c81ec5b1 100644 --- a/example/single-process-image/Dockerfile +++ b/example/single-process-image/Dockerfile @@ -1,6 +1,6 @@ # Use osixia/light-baseimage # https://github.com/osixia/docker-light-baseimage -FROM osixia/light-baseimage:0.2.3 +FROM osixia/light-baseimage:0.2.4 MAINTAINER Your Name # Download nginx from apt-get and clean apt-get files