1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
FROM registry.access.redhat.com/ubi9/ubi:9.5 AS builder
ARG VERSION
RUN dnf -y update && \
dnf install -y golang make python3.12 python3.12-pip git
RUN pip3.12 install wheel
ADD source.tar.gz /source
WORKDIR /source
RUN make VERSION=${VERSION}
FROM registry.access.redhat.com/ubi9/ubi:9.5
ARG VERSION
LABEL license="ASL2"
LABEL name="receptor"
LABEL vendor="ansible"
LABEL version="${VERSION}"
COPY receptorctl-${VERSION}-py3-none-any.whl /tmp
COPY receptor_python_worker-${VERSION}-py3-none-any.whl /tmp
COPY receptor.conf /etc/receptor/receptor.conf
RUN dnf -y update && \
dnf -y install python3.12-pip && \
dnf clean all && \
pip3.12 install --no-cache-dir wheel && \
pip3.12 install --no-cache-dir dumb-init && \
pip3.12 install --no-cache-dir ansible-runner && \
pip3.12 install --no-cache-dir /tmp/*.whl && \
rm /tmp/*.whl
COPY --from=builder /source/receptor /usr/bin/receptor
ENV RECEPTORCTL_SOCKET=/tmp/receptor.sock
EXPOSE 7323
ENTRYPOINT ["/usr/local/bin/dumb-init", "--"]
CMD ["/usr/bin/receptor", "-c", "/etc/receptor/receptor.conf"]
|