Add stretch and make it default

Stretch was just released: https://www.debian.org/News/2017/20170617

Closes #32
This commit is contained in:
James Westby 2017-06-18 12:03:28 +01:00 committed by James Westby
parent 79752bbb14
commit fad19490cb
4 changed files with 9 additions and 6 deletions

View File

@ -15,14 +15,14 @@ $ docker run --rm -it bitnami/minideb:latest
There are [tags](https://hub.docker.com/r/bitnami/minideb/tags/) for the different Debian releases.
```
$ docker run --rm -it bitnami/minideb:jessie
$ docker run --rm -it bitnami/minideb:stretch
```
The images are built daily and have the security release enabled, so will contain any security updates released more than 24 hours ago.
You can also use the images as a base for your own `Dockerfile`:
```
FROM bitnami/minideb:jessie
FROM bitnami/minideb:stretch
```
# Why use Minideb
@ -54,14 +54,14 @@ We provide a Makefile to help you build Minideb locally. It should be run on a D
$ sudo make
```
To build an individual release (jessie, wheezy or squeeze)
To build an individual release (stretch, jessie or unstable)
```
$ sudo make jessie
$ sudo make stretch
```
To test the resulting image:
```
$ sudo make test-jessie
$ sudo make test-stretch
```
# Contributing

View File

@ -34,9 +34,10 @@ set -u
set -o pipefail
DISTS="jessie
stretch
unstable
"
LATEST=jessie
LATEST=stretch
BASENAME=bitnami/minideb
GCR_BASENAME=gcr.io/bitnami-containers/minideb

1
debootstrap/stretch Symbolic link
View File

@ -0,0 +1 @@
jessie

View File

@ -5,6 +5,7 @@ set -u
set -o pipefail
DISTS="jessie
stretch
unstable
latest
"