Skip to content

Commit e3d708e

Browse files
authored
Merge pull request #5 from cytopia/release-0.3
Release 0.3
2 parents 6a96b21 + 5b6ebb9 commit e3d708e

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

‎Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
FROM alpine:latest as builder
1+
FROM debian:stable-slim as builder
22

33
# Install build dependencies
44
RUN set -eux \
5-
&& apk add --no-cache \
5+
&& DEBIAN_FRONTEND=noninteractive apt-get update -qq \
6+
&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends --no-install-suggests \
7+
ca-certificates \
68
curl \
7-
git
9+
git \
10+
unzip
811

912
# Get Terraform
1013
ARG TF_VERSION=latest
@@ -46,7 +49,7 @@ RUN set -eux \
4649
&& chmod +x /usr/bin/terragrunt
4750

4851
# Use a clean tiny image to store artifacts in
49-
FROM alpine:latest
52+
FROM alpine:3.9
5053
LABEL \
5154
maintainer="cytopia <cytopia@everythingcli.org>" \
5255
repo="https://github.com/cytopia/docker-terragrunt"

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Build Status](https://travis-ci.com/cytopia/docker-terragrunt.svg?branch=master)](https://travis-ci.com/cytopia/docker-terragrunt)
44
[![Tag](https://img.shields.io/github/tag/cytopia/docker-terragrunt.svg)](https://github.com/cytopia/docker-terragrunt/releases)
5-
[![](https://images.microbadger.com/badges/version/cytopia/terragrunt:latest.svg)](https://microbadger.com/images/cytopia/terragrunt:latest "terragrunt")
6-
[![](https://images.microbadger.com/badges/image/cytopia/terragrunt:latest.svg)](https://microbadger.com/images/cytopia/terragrunt:latest "terragrunt")
5+
[![](https://images.microbadger.com/badges/version/cytopia/terragrunt:latest.svg?&kill_cache=1)](https://microbadger.com/images/cytopia/terragrunt:latest "terragrunt")
6+
[![](https://images.microbadger.com/badges/image/cytopia/terragrunt:latest.svg?&kill_cache=1)](https://microbadger.com/images/cytopia/terragrunt:latest "terragrunt")
77
[![](https://img.shields.io/badge/github-cytopia%2Fdocker--terragrunt-red.svg)](https://github.com/cytopia/docker-terragrunt "github.com/cytopia/docker-terragrunt")
88
[![License](https://img.shields.io/badge/license-MIT-%233DA639.svg)](https://opensource.org/licenses/MIT)
99

@@ -33,7 +33,7 @@
3333
3434
View **[Dockerfile](https://github.com/cytopia/docker-terragrunt/blob/master/Dockerfile)** on GitHub.
3535

36-
[![Docker hub](http://dockeri.co/image/cytopia/terragrunt)](https://hub.docker.com/r/cytopia/terragrunt)
36+
[![Docker hub](http://dockeri.co/image/cytopia/terragrunt?&kill_cache=1)](https://hub.docker.com/r/cytopia/terragrunt)
3737

3838
Tiny Alpine-based multistage-build dockerized version of [Terragrunt](https://github.com/gruntwork-io/terragrunt)<sup>[1]</sup>
3939
and its compatible version of [Terraform](https://github.com/hashicorp/terraform)<sup>[2]</sup>.

0 commit comments

Comments
 (0)