This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 575
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from zalando/live-preview-features
Live preview features
- Loading branch information
Showing
10 changed files
with
143 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
#== Ubuntu xenial is 16.04, i.e. FROM ubuntu:16.04 | ||
# Find latest images at https://hub.docker.com/r/library/ubuntu/ | ||
# Layer size: big: 127.2 MB | ||
FROM ubuntu:xenial-20161010 | ||
FROM ubuntu:xenial-20161213 | ||
ENV UBUNTU_FLAVOR="xenial" \ | ||
UBUNTU_DATE="20161010" | ||
UBUNTU_DATE="20161213" | ||
|
||
#== Ubuntu flavors - common | ||
RUN echo "deb http://archive.ubuntu.com/ubuntu ${UBUNTU_FLAVOR} main universe\n" > /etc/apt/sources.list \ | ||
&& echo "deb http://archive.ubuntu.com/ubuntu ${UBUNTU_FLAVOR}-updates main universe\n" >> /etc/apt/sources.list \ | ||
&& echo "deb http://archive.ubuntu.com/ubuntu ${UBUNTU_FLAVOR}-security main universe\n" >> /etc/apt/sources.list | ||
|
||
MAINTAINER Team TIP <[email protected]> | ||
# https://github.com/docker/docker/pull/25466#discussion-diff-74622923R677 | ||
LABEL maintainer "Team TIP <[email protected]>" | ||
|
||
# No interactive frontend during docker build | ||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
|
@@ -209,12 +211,12 @@ RUN set -x \ | |
&& docker-${DOCKER_VERSION} --version | grep "${DOCKER_VERSION}" | ||
|
||
#----------------------- | ||
# Docker 1.12.3 -- 15 MB | ||
# Docker 1.12.6 -- 15 MB | ||
#----------------------- | ||
# https://github.com/docker-library/docker/blob/master/1.12/Dockerfile#L1 | ||
RUN set -x \ | ||
&& DOCKER_VERSION="1.12.3" \ | ||
DOCKER_SHA256="626601deb41d9706ac98da23f673af6c0d4631c4d194a677a9a1a07d7219fa0f" \ | ||
&& DOCKER_VERSION="1.12.6" \ | ||
DOCKER_SHA256="cadc6025c841e034506703a06cf54204e51d0cadfae4bae62628ac648d82efdd" \ | ||
&& curl -fSL "https://${DOCKER_BUCKET}/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz" \ | ||
-o docker.tgz \ | ||
&& echo "${DOCKER_SHA256} *docker.tgz" | sha256sum -c - \ | ||
|
@@ -223,6 +225,23 @@ RUN set -x \ | |
&& rm -rf docker/ && rm docker.tgz \ | ||
&& docker-${DOCKER_VERSION} --version | grep "${DOCKER_VERSION}" | ||
|
||
#----------------- | ||
# Docker 1.13.0 -- | ||
#----------------- | ||
# https://github.com/docker-library/docker/blob/master/1.13-rc/Dockerfile#L1 | ||
RUN set -x \ | ||
&& DOCKER_VERSION="1.13.0" \ | ||
&& DOCKER_VER_RC="-rc7" \ | ||
DOCKER_SHA256="beff8e0c5a235c0b9f374e4975401c793ceeca19332ffec965edb557ef7bfbc1" \ | ||
DOCKER_BUCKET="test.docker.com" \ | ||
&& curl -fSL "https://${DOCKER_BUCKET}/builds/Linux/x86_64/docker-${DOCKER_VERSION}${DOCKER_VER_RC}.tgz" \ | ||
-o docker.tgz \ | ||
&& echo "${DOCKER_SHA256} *docker.tgz" | sha256sum -c - \ | ||
&& tar -xzvf docker.tgz \ | ||
&& mv docker/docker /usr/bin/docker-${DOCKER_VERSION} \ | ||
&& rm -rf docker/ && rm docker.tgz \ | ||
&& docker-${DOCKER_VERSION} --version | grep "${DOCKER_VERSION}" | ||
|
||
# ------------------------# | ||
# Sauce Connect Tunneling # | ||
# ------------------------# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.