forked from stolostron/build-harness-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
29 lines (22 loc) · 773 Bytes
/
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
FROM golang:1.13.4-alpine3.10
LABEL maintainer="Red Hat <[email protected]>"
LABEL "com.github.actions.name"="Build Harness"
LABEL "com.github.actions.description"="Contains CloudPosse build-harness with open-cluster-management extensions"
LABEL "com.github.actions.icon"="tool"
LABEL "com.github.actions.color"="blue"
RUN apk update && \
apk --update add \
bash \
ca-certificates \
coreutils \
curl \
git \
gettext \
make \
py-pip && \
git config --global advice.detachedHead false
ENV INSTALL_PATH /usr/local/bin
WORKDIR /build-harness
RUN git clone https://github.com/cloudposse/build-harness.git
RUN git clone https://github.com/open-cluster-management/build-harness-extensions.git
ENTRYPOINT ["/bin/bash"]