Skip to content

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed Jul 30, 2015
1 parent 3abfad7 commit cba98b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM centos:7
MAINTAINER Marco Palladino, [email protected]

ENV KONG_VERSION 0.4.1

RUN yum -y install wget

RUN wget https://github.com/Mashape/kong/releases/download/0.4.0/kong-0.4.0.el7.noarch.rpm \
&& yum install -y kong-0.4.0.el7.noarch.rpm
RUN wget https://github.com/Mashape/kong/releases/download/$KONG_VERSION/kong-$KONG_VERSION.el7.noarch.rpm \
&& yum install -y kong-$KONG_VERSION.el7.noarch.rpm

RUN rm kong-$KONG_VERSION.el7.noarch.rpm

VOLUME ["/etc/kong/"]

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This is the official Docker image for [Kong][kong-site-url].
- `0.3.1` - *([Dockerfile](https://github.com/Mashape/docker-kong/blob/0.3.1/Dockerfile))*
- `0.3.2` - *([Dockerfile](https://github.com/Mashape/docker-kong/blob/0.3.2/Dockerfile))*
- `0.4.0` - *([Dockerfile](https://github.com/Mashape/docker-kong/blob/0.4.0/Dockerfile))*
- `0.4.1` - *([Dockerfile](https://github.com/Mashape/docker-kong/blob/0.4.1/Dockerfile))*
- `latest` - *([Dockerfile](https://github.com/Mashape/docker-kong/blob/latest/Dockerfile))*

# What is Kong?
Expand Down

0 comments on commit cba98b6

Please sign in to comment.