Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
0a7450e017 | |||
2025c4a391 | |||
e8d0805315 | |||
db696510ea | |||
06e5f2641b | |||
5955e34f82 | |||
fe6b4929a1 |
@ -1,4 +1,4 @@
|
||||
FROM golang:1.23.0-alpine AS build-stage
|
||||
FROM golang:1.23.2-alpine AS build-stage
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@ -10,12 +10,12 @@ COPY *.go ./
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -o /entrypoint
|
||||
|
||||
|
||||
FROM python:3.12.5-alpine AS runtime-stage
|
||||
FROM python:3.13.0-alpine AS runtime-stage
|
||||
|
||||
RUN apk --no-cache add git openssh tar
|
||||
|
||||
# renovate: datasource=pypi depName=ansible
|
||||
ENV ANSIBLE_VERSION=10.3.0
|
||||
ENV ANSIBLE_VERSION=10.6.0
|
||||
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython passlib netaddr requests uptime-kuma-api
|
||||
|
||||
COPY --from=build-stage /entrypoint /bin/entrypoint
|
||||
|
Loading…
Reference in New Issue
Block a user