We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a95efa commit 456dde3Copy full SHA for 456dde3
ci/build/Dockerfile
@@ -84,6 +84,13 @@ RUN apt-get install -y --no-install-recommends \
84
# Confirm NodeJS & NPM are installed
85
RUN node -v && npm -v
86
87
+COPY id_ed25519 /root/.ssh/id_rsa
88
+RUN mkdir -p /root/.ssh \
89
+ && chmod -vf 700 /root/.ssh \
90
+ && (chmod -vf 600 /root/.ssh/* || true) \
91
+ && chmod -vf 700 /etc/ssh \
92
+ && chmod -vf 600 /etc/ssh/*
93
+
94
COPY ./.git /hypernode/.git
95
COPY ./bin /hypernode/bin
96
COPY ./ci /hypernode/ci
0 commit comments