Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/estenrye/ansible/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.16 AS download
FROM alpine:3.24 AS download
RUN apk update \
&& apk add bash curl git openssl tar wget
RUN ( \
Expand All @@ -23,7 +23,7 @@ RUN if [[ "$(uname -m)" == 'x86_64']]; \
/root/.krew/bin/kubectl-krew install minio; \
fi

FROM alpine:3.16
FROM alpine:3.24
COPY --from=download /root/.krew /root/.krew
COPY --from=download \
/usr/local/bin/helm \
Expand Down
2 changes: 1 addition & 1 deletion docker/estenrye/fluentd-cloudtrail/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AUTOMATICALLY GENERATED
# DO NOT EDIT THIS FILE DIRECTLY, USE /Dockerfile.template.erb

FROM alpine:3.16
FROM alpine:3.24
LABEL maintainer "Fluentd developers <fluentd@googlegroups.com>"
LABEL Description="Fluentd docker image" Vendor="Fluent Organization" Version="1.14.5"

Expand Down
4 changes: 2 additions & 2 deletions docker/estenrye/ubuntu-autoinstall-iso/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM alpine:3.16 AS base
FROM alpine:3.24 AS base
COPY vendor/ /vendor/
RUN apk add bash
WORKDIR /apk
RUN cp /vendor/linux/$(uname -m)/cdrkit-1.1.11-r2.apk /apk/cdrkit.apk \
&& cp /vendor/linux/$(uname -m)/xorriso-1.5.2-r0.apk /apk/xorriso.apk

FROM alpine:3.16
FROM alpine:3.24

COPY --from=base /apk /apk
RUN apk update && apk upgrade \
Expand Down
Loading