Created
September 23, 2019 11:06
-
-
Save jonashackt/260f3fecc35bf1b67e382f1bb72658fa to your computer and use it in GitHub Desktop.
Clone a GitLab git repository inside a Dockerfile/build run inside GitLab CI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add the following key to the 'Deploy Keys' section in Settings/Repository of your GitLab repository | |
# Dockerfile: | |
FROM centos:7 | |
ARG SSH_KEY_GITLAB_DEPLOY_KEY | |
RUN \ | |
### ssh configuration, see https://docs.gitlab.com/ee/ci/ssh_keys/#ssh-keys-when-using-the-docker-executor | |
# run ssh-agent inside build environment | |
eval $(ssh-agent -s); \ | |
# add ssh-key from GitLab variable to ssh agent store incl. fixing line endings | |
echo "${SSH_KEY_GITLAB_DEPLOY_KEY}" | tr -d '\r' | ssh-add -; \ | |
# create the SSH directory and give it the right permissions | |
mkdir -p ~/.ssh; \ | |
# Allow access to gitlab.your.lan | |
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config; \ | |
chmod 700 ~/.ssh; \ | |
\ | |
git clone ssh://[email protected]:2222/yourgroup/yourrepository.git; | |
# Run with docker build and include Deploy Key fully as build-arg | |
docker build . --force-rm --build-arg SSH_KEY_GITLAB_DEPLOY_KEY="-----BEGIN OPENSSH PRIVATE KEY----- | |
c8g6t5...." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment