woodpecker-ansible-runner/Dockerfile

25 lines
549 B
Docker
Raw Normal View History

FROM golang:1.20.7-alpine AS build-stage
2021-12-15 00:21:52 +01: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 17:25:13 +02:00
RUN apk --no-cache add git openssh
2021-12-15 16:34:59 +01:00
2021-12-15 00:21:52 +01:00
# renovate: datasource=pypi depName=ansible
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
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" ]