Skip to content

Commit

Permalink
Update alpine base image used in dockerfiles (#250)
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Shishkin <me@teran.ru>
  • Loading branch information
teran authored Nov 8, 2024
1 parent d546beb commit 87856b1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.cli
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.exporter
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.gc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.manager
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.migrator
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.publisher
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.seeder
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.20.0 AS certificates
FROM alpine:3.20.3 AS certificates

RUN apk add --update --no-cache \
ca-certificates=20240705-r0

FROM alpine:3.20.0 AS passwd
FROM alpine:3.20.3 AS passwd

RUN echo 'nobody:x:65534:65534:nobody:/:/sbin/nologin' > /passwd.nobody

Expand Down

0 comments on commit 87856b1

Please sign in to comment.