Skip to content

Commit 94c53c0

Browse files
committed
Fixing Build issue
1 parent 3406c63 commit 94c53c0

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.circleci/config.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,7 @@ save_cache_settings: &save_cache_settings
2323
paths:
2424
- node_modules
2525

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-
3126
builddeploy_steps: &builddeploy_steps
32-
- add_ssh_keys: *finger_print_add
3327
- checkout
3428
- setup_remote_docker
3529
- run: *install_dependency

docker/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Use the base image with Node.js
22
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
65
# Copy the current directory into the Docker image
76
COPY . /challenge-api
87

0 commit comments

Comments
 (0)