2023-08-09 03:04:47 +02:00
|
|
|
FROM golang:1.21.0-alpine AS build-stage
|
2021-12-15 00:21:52 +01:00
|
|
|
|
2023-07-04 16:38:22 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
COPY *.go ./
|
|
|
|
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o /entrypoint
|
|
|
|
|
|
|
|
|
2023-07-04 16:57:46 +02:00
|
|
|
FROM python:3.11.4-alpine AS runtime-stage
|
2023-07-04 16:38:22 +02:00
|
|
|
|
2023-08-02 09:22:28 +02:00
|
|
|
RUN apk --no-cache add git openssh tar
|
2021-12-15 16:34:59 +01:00
|
|
|
|
2021-12-15 00:21:52 +01:00
|
|
|
# renovate: datasource=pypi depName=ansible
|
2023-07-19 15:03:07 +02:00
|
|
|
ENV ANSIBLE_VERSION=8.2.0
|
2023-05-29 19:18:36 +02:00
|
|
|
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython passlib netaddr
|
2021-12-15 00:21:52 +01:00
|
|
|
|
2023-07-04 16:38:22 +02:00
|
|
|
COPY --from=build-stage /entrypoint /bin/entrypoint
|
2021-12-15 00:21:52 +01:00
|
|
|
|
2023-07-04 17:30:14 +02:00
|
|
|
ENV ANSIBLE_HOST_KEY_CHECKING=False
|
2023-07-04 18:01:16 +02:00
|
|
|
ENV PYTHONUNBUFFERED=1
|
2021-12-15 00:21:52 +01:00
|
|
|
ENTRYPOINT [ "/bin/entrypoint" ]
|