Skip to content

Commit

Permalink
fix: install openssh-client instead of openssh
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdavim committed Feb 4, 2023
1 parent 3432c09 commit 37e469a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- run:
name: install git
command: apk update && apk add --no-cache git openssh
command: apk update && apk add --no-cache git openssh-client
- checkout
- run:
name: release
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV HELM_SECRETS_VERSION=$GLOBAL_HELM_SECRETS_VERSION
ENV SOPS_VERSION=$GLOBAL_SOPS_VERSION
ENV HELM_DIFF_THREE_WAY_MERGE=true

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

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

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

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

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

Expand Down

0 comments on commit 37e469a

Please sign in to comment.