-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDockerfile
57 lines (49 loc) · 1.37 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# This images is used to test our Terraform Provider and Modules
#
# Repo: techallylw/terraform
# URL: https://hub.docker.com/r/techallylw/terraform
# Tag: 12
FROM hashicorp/terraform:0.12.31 AS terraform12
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag: 13
FROM hashicorp/terraform:0.13.7 AS terraform13
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag: 14
FROM hashicorp/terraform:0.14.11 AS terraform14
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag: 15
FROM hashicorp/terraform:0.15.3 AS terraform15
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag: 1.0
FROM hashicorp/terraform:1.0.0 AS terraform1.0
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag: 1.1
FROM hashicorp/terraform:1.1.9 AS terraform1.1
RUN apk update
RUN apk add bash
RUN apk add curl
RUN apk add make jq
# Tag:tf-go-integration
FROM golang:1.18 AS tf-go-integrations
RUN apt-get update && apt-get install -y gnupg software-properties-common curl
RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add -
RUN apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
RUN apt-get update && apt-get install terraform
# Tag:ally-releases
FROM techallylw/tf-go-integrations AS ally-releases
RUN apt-get update && apt-get install -y jq zip