Skip to content
Snippets Groups Projects
Commit 248f2c6a3fdb authored by Alexander Trost's avatar Alexander Trost
Browse files

Added Todo to README.md


Updated golang in build and busybox for Dockerfile

Signed-off-by: default avatarAlexander Trost <galexrt@googlemail.com>
parent fe9f3bf1a533
No related branches found
No related tags found
No related merge requests found
image: golang:1.9.4-stretch
image: golang:1.10.2-stretch
# The problem is that to be able to use go get, one needs to put
# the repository in the $GOPATH. So for example if your gitlab domain
......@@ -7,9 +7,9 @@
# repository in /go/src/mydomainperso.com/repos/projectname
# Thus, making a symbolic link corrects this.
before_script:
- mkdir -p /go/src/gitlab.zerbytes.net/${CI_PROJECT_NAMESPACE}
- ln -sf ${CI_PROJECT_DIR} /go/src/gitlab.zerbytes.net/${CI_PROJECT_PATH}
- cd /go/src/gitlab.zerbytes.net/${CI_PROJECT_PATH}/
- mkdir -p "/go/src/gitlab.zerbytes.net/${CI_PROJECT_NAMESPACE}"
- ln -sf "${CI_PROJECT_DIR}" "/go/src/gitlab.zerbytes.net/${CI_PROJECT_PATH}"
- cd "/go/src/gitlab.zerbytes.net/${CI_PROJECT_PATH}/"
stages:
- test
......@@ -26,7 +26,7 @@
test2:
stage: test
script:
- sleep 5
- sleep 3
- echo "We did it! Something else runs in parallel!"
compile:
......
FROM busybox:1.28.0-glibc
FROM busybox:1.28.4-glibc
COPY app /bin/app
......
......@@ -38,3 +38,6 @@
## Thanks!
Thanks to [@shadycuz - GitHub](https://github.com/shadycuz) for his comments with improvements for the code in this repository!
## ToDo
- [ ] Implement app review, see https://gitlab.com/gitlab-examples/review-apps-nginx/blob/master/.gitlab-ci.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment