Skip to content

Commit bea28da

Browse files
gl-johnsonGitHub Enterprise
authored andcommitted
Merge pull request #123 from Conjur-Enterprise/snyk-fix
CNJR-0000: Run apk upgrade in container image
2 parents 458310a + da879b7 commit bea28da

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9-
## [1.9.0] - 2026-03-05
9+
## [1.9.0] - 2026-03-09
1010

1111
### Added
1212
- Support for standalone mode config (CNJR-12577)

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,8 @@ RUN go build -a -installsuffix cgo -gcflags="all=-N -l" -o secrets-provider ./cm
6464
FROM alpine:latest AS secrets-provider-base
6565
LABEL maintainer="CyberArk Software Ltd."
6666

67-
# Ensure openssl development libraries are always up to date
68-
RUN apk add --no-cache openssl-dev
69-
70-
RUN apk add -u --no-cache shadow libc6-compat && \
67+
RUN apk update && apk upgrade --no-cache && \
68+
apk add --no-cache openssl-dev shadow libc6-compat && \
7169
# Add limited user
7270
groupadd -r secrets-provider \
7371
-g 777 && \

0 commit comments

Comments
 (0)