Skip to content

Commit

Permalink
Update alpine to 3.20 to fix CVEs
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangpengcheng committed May 23, 2024
1 parent f407296 commit aade1f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/pulsar-functions-base-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG PULSAR_IMAGE
ARG PULSAR_IMAGE_TAG
FROM ${PULSAR_IMAGE}:${PULSAR_IMAGE_TAG} as pulsar
FROM alpine:3.19 as functions-runner
FROM alpine:3.20 as functions-runner

ENV GID=10001
ENV UID=10000
Expand Down
2 changes: 1 addition & 1 deletion images/pulsar-functions-base-runner/pulsarctl.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG PULSAR_IMAGE
ARG PULSAR_IMAGE_TAG
FROM ${PULSAR_IMAGE}:${PULSAR_IMAGE_TAG} as pulsar
FROM alpine:3.19 as functions-runner
FROM alpine:3.20 as functions-runner

ENV GID=10001
ENV UID=10000
Expand Down
2 changes: 1 addition & 1 deletion operator.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19
FROM alpine:3.20

RUN apk add tzdata --no-cache
RUN apk upgrade --no-cache
Expand Down

0 comments on commit aade1f2

Please sign in to comment.