From 00e45dcfe1bebe27f2481d9fdc0c189eba690c8a Mon Sep 17 00:00:00 2001 From: gisele-igore Date: Wed, 5 Apr 2023 11:24:29 +0200 Subject: [PATCH] Fix dck --- Dockerfile | 2 +- .ssh/id_rsa.pub => id_rsa.pub | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename .ssh/id_rsa.pub => id_rsa.pub (100%) diff --git a/Dockerfile b/Dockerfile index a6faefe7..11d63f6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY package.json ./ RUN apk update && apk add openssh-client git -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 diff --git a/.ssh/id_rsa.pub b/id_rsa.pub similarity index 100% rename from .ssh/id_rsa.pub rename to id_rsa.pub