Permalink
Please sign in to comment.
Showing
with
35 additions
and 16 deletions.
- +2 −2 Makefile
- +3 −8 images/gitlabci/Dockerfile
- +12 −0 images/gitlabci/README.md
- +18 −6 images/gitlabci/entrypoint.sh
4
Makefile
11
images/gitlabci/Dockerfile
| @@ -1,13 +1,8 @@ | ||
| -FROM gliderlabs/alpine:3.3 | ||
| - | ||
| -RUN apk-install bash | ||
| - | ||
| -WORKDIR /opt/spread-gitlab | ||
| +FROM docker:git | ||
| ADD spread-linux-static /usr/local/bin/spread | ||
| -ADD entrypoint.sh ./entrypoint.sh | ||
| +ADD entrypoint.sh /opt/spread-gitlab/entrypoint.sh | ||
| ENV KUBECFG_INSECURE_SKIP_TLS_VERIFY="false" | ||
| -ENV DEPLOY_DIR="." | ||
| -ENTRYPOINT ["./entrypoint.sh"] | ||
| +ENTRYPOINT ["/opt/spread-gitlab/entrypoint.sh"] |
12
images/gitlabci/README.md
24
images/gitlabci/entrypoint.sh
0 comments on commit
659e04a