Skip to content

Commit 09fc83c

Browse files
committed
move to debian slim, force update of installed pacakges to latest version
1 parent 7e8cf48 commit 09fc83c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docker/Dockerfile.proxy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ARG EXTRA_BUILD_ARGS
55
ARG FIPS_MODE
66

77
RUN apt update -y
8+
RUN apt upgrade -y
89
RUN apt install -y build-essential ca-certificates python3 git
910

1011
WORKDIR /code
@@ -17,9 +18,10 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
1718
fi'
1819

1920
# Runner stage
20-
FROM debian:12.5 AS runner
21+
FROM debian:12.5-slim AS runner
2122

2223
RUN apt update -y
24+
RUN apt upgrade -y
2325
RUN apt install -y bash ca-certificates
2426
RUN addgroup --gid 1000 --system 'split-proxy'
2527
RUN adduser \

docker/Dockerfile.synchronizer

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ RUN bash -c 'if [[ "${FIPS_MODE}" = "enabled" ]]; \
1717
fi'
1818

1919
# Runner stage
20-
FROM debian:12.5 AS runner
20+
FROM debian:12.5-slim AS runner
2121

2222
RUN apt update -y
23+
RUN apt upgrade -y
2324
RUN apt install -y bash ca-certificates
2425
RUN addgroup --gid 1000 --system 'split-synchronizer'
2526
RUN adduser \

splitio/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
package splitio
33

44
// Version is the version of this Agent
5-
const Version = "5.8.0"
5+
const Version = "5.8.1-alpha1"

0 commit comments

Comments
 (0)