This commit is contained in:
gisele-igore 2023-04-05 12:00:49 +02:00
parent 3cef3b5e49
commit 698ff4061f
3 changed files with 4 additions and 6 deletions

View File

@ -15,8 +15,8 @@ jobs:
- checkout
- add_ssh_keys:
fingerprints:
- "d9:a4:d0:b8:e0:30:1b:a1:0e:83:46:07:ad:f0:b2:ee"
- run: cp $HOME/.ssh/id_rsa_d9a4d0b8e0301ba10e834607adf0b2ee id_rsa
- "39:25:57:64:62:43:1f:98:b1:5e:75:53:87:d8:e7:71"
- run: cp $HOME/.ssh/id_rsa_3925576462431f98b15e755387d8e771 id_rsa
- setup_remote_docker:
version: 20.10.12
docker_layer_caching: true

View File

@ -1 +0,0 @@
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDms7EPgOFYP+yoYyd166tZZA8jt19UYCA7WBm0hXQWLa1OrZTAMhFTIGXJUpS0x0JtzQbYcVn17+5viEeUbRLTgiMTypRa0vU+X7ZGsZj33ETbthVUVcjtBMqh0SBVKgBSlf79UbXyBJ9jg8eJCgUU8GOnzrwn8jTEugf4pE0YCB2nqUzQWRCBck2/JhKUDLMgQKFMVjEb1RQ6wIXI2TagaipVNuxHioxkGt6+RouiELba5szgthfgYOxyPis2KOUb+sGzgkXVr0la3O7nwlDYaTExLQLKIhhZU5QkUjlf5vnFLiNrKF1aTQn5OTh4gHjsYe1EftQLPH1i5PCURJO5l85zsLCiFsN8fAPNA3j4eShJooKJVNlf6Oxa5lNw+aRPeIPvoyslibwRufEJIVA3NazVhoSax8n2LJSlGBkSlQHTcE0WhSapabVddNc0M3If6Qdvyf3UODmlX0OQVes9adixmyJRySl20oq5V1uY7KbaBA6k+CrzmlePrtJY0VM= gisele-smartchain@MacBook-Pro-6.local

View File

@ -1,14 +1,13 @@
# Install dependencies only when needed
FROM node:19-alpine AS deps
WORKDIR leCoffre
WORKDIR leCoffre-front
COPY package.json ./
RUN apk update && apk add openssh-client git
RUN ls -la
COPY .ssh/id_rsa /root/.ssh/id_rsa
COPY id_rsa /root/.ssh/id_rsa
RUN chmod 600 ~/.ssh/id_rsa
RUN eval "$(ssh-agent -s)" && ssh-add /root/.ssh/id_rsa
RUN ssh-keyscan github.com smart-chain-fr/leCoffre-resources.git >> /root/.ssh/known_hosts