Skip to content
Open
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
6 changes: 3 additions & 3 deletions services/ansibler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.26.3 AS go_builder
FROM docker.io/library/golang:1.26.4 AS go_builder

ARG TARGETARCH

Expand All @@ -21,7 +21,7 @@ WORKDIR /go/services/ansibler/cmd/worker
RUN CGO_ENABLED=0 go build

# Ansible installation: https://github.com/cytopia/docker-ansible/blob/master/Dockerfiles/Dockerfile-base
FROM docker.io/library/alpine:3.23 AS ansible_builder
FROM docker.io/library/alpine:3.24 AS ansible_builder

# Install required packages, including Python3 and Ansible
RUN apk add --no-cache \
Expand All @@ -34,7 +34,7 @@ RUN apk add --no-cache \
&& ln -sf /usr/bin/python3 /usr/bin/python \
&& pip3 install --no-cache-dir --break-system-packages ansible==12.2.0

FROM alpine:3.23
FROM alpine:3.24

#Add repository label
LABEL org.opencontainers.image.source="https://github.com/berops/claudie"
Expand Down
Loading