Skip to content

Commit

Permalink
Merge pull request #15 from codefresh-io/CR-2817
Browse files Browse the repository at this point in the history
Cr 2817
  • Loading branch information
denis-codefresh authored Feb 19, 2021
2 parents f47a7ef + b3d6e1d commit 4db9ab9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ssh/config
Original file line number Diff line number Diff line change
@@ -1 +1 @@
IdentityFile ~/.ssh/codefresh
IdentityFile ~/.ssh/codefresh
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ RUN apk add --no-cache --virtual deps openssl && \
git lfs install && \
apk del deps

#add ssh record on which ssh key to use
# add ssh record on which ssh key to use
COPY ./.ssh/ /root/.ssh/

# add fingerprint for major git providers
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
RUN ssh-keyscan bitbucket.org >> /root/.ssh/known_hosts

COPY ./start.sh /run/start.sh
RUN chmod +x /run/start.sh

Expand Down
6 changes: 5 additions & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ RUN apk add --no-cache --virtual deps openssl && \
git lfs install && \
apk del deps

#add ssh record on which ssh key to use
# add ssh record on which ssh key to use
COPY ./.ssh/ /root/.ssh/

# add fingerprint for major git providers
RUN ssh-keyscan github.com >> /root/.ssh/known_hosts
RUN ssh-keyscan bitbucket.org >> /root/.ssh/known_hosts

COPY ./start.sh /run/start.sh
RUN chmod +x /run/start.sh

Expand Down
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.0.3
version: 10.0.4

0 comments on commit 4db9ab9

Please sign in to comment.