From 358dda3d66c4baf1ce840ef034f484f1d8549ad2 Mon Sep 17 00:00:00 2001 From: kumarrahul04 <146384313+kumarrahul04@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:16:58 -0500 Subject: [PATCH] Released v1.28.0 (#143) * CASMCMS-9036: Remove sshd from cray-cfs-operator image (#142) * removed openssh and added openssh-client package * updated change log * updated copyright * updated copyright * updated * Released v1.28.0 --------- Co-authored-by: David Laine <77020169+dlaine-hpe@users.noreply.github.com> Co-authored-by: Mitch Harding (the weird one) --- CHANGELOG.md | 4 ++++ Dockerfile | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6429fe2..e52f86c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.28.0] - 01/22/2025 +### Changed +- Removed openssh and added openssh-client package. + ## [1.27.1] - 09/06/2024 ### Dependencies - Bump `cryptography` to 43.0.1 to resolve CVE diff --git a/Dockerfile b/Dockerfile index 9c9cc1c..2586138 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # MIT License # -# (C) Copyright 2019-2022, 2024 Hewlett Packard Enterprise Development LP +# (C) Copyright 2019-2022, 2024-2025 Hewlett Packard Enterprise Development LP # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), @@ -27,7 +27,7 @@ WORKDIR /app # Upgrade apk-tools and busybox to avoid Snyk-detected security issues RUN apk add --upgrade --no-cache apk-tools busybox && \ apk update && \ - apk add --no-cache gcc musl-dev openssh libffi-dev openssl-dev python3-dev py3-pip make curl bash git && \ + apk add --no-cache gcc musl-dev openssh-client libffi-dev openssl-dev python3-dev py3-pip make curl bash git && \ apk -U upgrade --no-cache ADD constraints.txt requirements.txt /app/ RUN --mount=type=secret,id=netrc,target=/root/.netrc pip3 install --no-cache-dir -U pip && \