Skip to content

Commit 76a57d6

Browse files
committed
fix: install openssh-client instead of openssh
1 parent 5800df1 commit 76a57d6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- run:
2323
name: install git
24-
command: apk update && apk add --no-cache git openssh
24+
command: apk update && apk add --no-cache git openssh-client
2525
- checkout
2626
- run:
2727
name: release

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ENV HELM_SECRETS_VERSION=$GLOBAL_HELM_SECRETS_VERSION
2626
ENV SOPS_VERSION=$GLOBAL_SOPS_VERSION
2727
ENV HELM_DIFF_THREE_WAY_MERGE=true
2828

29-
RUN apk add --update --no-cache ca-certificates git openssh openssl ruby curl wget tar gzip make bash
29+
RUN apk add --update --no-cache ca-certificates git openssh-client openssl ruby curl wget tar gzip make bash
3030

3131
ADD https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux /usr/local/bin/sops
3232
RUN chmod +x /usr/local/bin/sops
@@ -46,7 +46,7 @@ RUN helm plugin install https://github.com/jkroepke/helm-secrets --version ${HEL
4646
### Go Builder & Tester ###
4747
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} as builder
4848

49-
RUN apk add --update --no-cache ca-certificates git openssh ruby bash make curl
49+
RUN apk add --update --no-cache ca-certificates git openssh-client ruby bash make curl
5050
RUN gem install hiera-eyaml --no-doc
5151
RUN update-ca-certificates
5252

@@ -69,7 +69,7 @@ RUN make test \
6969
### Final Image ###
7070
FROM alpine:${ALPINE_VERSION} as base
7171

72-
RUN apk add --update --no-cache ca-certificates git openssh ruby curl bash gnupg
72+
RUN apk add --update --no-cache ca-certificates git openssh-client ruby curl bash gnupg
7373
RUN gem install hiera-eyaml --no-doc
7474
RUN update-ca-certificates
7575

0 commit comments

Comments
 (0)