forked from mintel/build-harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (29 loc) 路 704 Bytes
/
Copy pathDockerfile
File metadata and controls
39 lines (29 loc) 路 704 Bytes
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
FROM golang:1.11-alpine3.7
RUN apk update && \
apk --update add \
bash \
ca-certificates \
coreutils \
curl \
git \
gettext \
grep \
jq \
libc6-compat \
make \
py-pip && \
git config --global advice.detachedHead false
RUN curl -sSL https://apk.cloudposse.com/install.sh | bash
## Install as packages
## Codefresh required additional libraries for alpine
## So can not be curl binary
RUN apk --update --no-cache add \
chamber \
helm \
helmfile \
codefresh
ADD ./ /build-harness/
ENV INSTALL_PATH /usr/local/bin
WORKDIR /build-harness
RUN make -s template/deps aws/install
ENTRYPOINT ["/bin/bash"]