Compare commits

..

No commits in common. "master" and "1.0.26" have entirely different histories.

View File

@ -1,4 +1,4 @@
FROM golang:1.23.1-alpine AS build-stage
FROM golang:1.22.5-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.6-alpine AS runtime-stage
FROM python:3.12.4-alpine AS runtime-stage
RUN apk --no-cache add git openssh tar
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION=10.4.0
ENV ANSIBLE_VERSION=10.2.0
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython passlib netaddr requests uptime-kuma-api
COPY --from=build-stage /entrypoint /bin/entrypoint