File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,7 @@ save_cache_settings: &save_cache_settings
23
23
paths :
24
24
- node_modules
25
25
26
- finger_print_add : &finger_print_add
27
- fingerprints :
28
- - " 62:fd:e9:40:a3:5f:8d:c7:55:36:f2:76:59:78:6e:f0"
29
- - SHA256:KJYSvQh9CxkY9yRXxp+Geo6cllnfSiiKAH3LFQ/X9f4
30
-
31
26
builddeploy_steps : &builddeploy_steps
32
- - add_ssh_keys : *finger_print_add
33
27
- checkout
34
28
- setup_remote_docker
35
29
- run : *install_dependency
Original file line number Diff line number Diff line change 1
1
# Use the base image with Node.js
2
2
FROM node:18.14.1-alpine3.17
3
- RUN apk add --no-cache git
4
- RUN apk add --update --no-cache openssh
5
-
3
+ RUN apk add --update --no-cache openssh-client git
4
+ RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
6
5
# Copy the current directory into the Docker image
7
6
COPY . /challenge-api
8
7
You can’t perform that action at this time.
0 commit comments