feat: receptor #141

Merged
jon_nfc merged 2 commits from 17-receptor into development 2023-11-14 11:19:19 +00:00
2 changed files with 13 additions and 5 deletions
Showing only changes of commit 8e96e16073 - Show all commits

View File

@ -1,5 +1,9 @@
ARG TARGETPLATFORM=linux/amd64
FROM --platform=$TARGETPLATFORM quay.io/ansible/receptor:devel as receptor
FROM --platform=$TARGETPLATFORM python:3.11-bullseye
# Ansible chucks a wobbler without. see: https://github.com/ansible/ansible/issues/78283
@ -71,8 +75,10 @@ WORKDIR /workdir
COPY requirements.txt /tmp/requirements.txt
COPY --from=receptor /usr/bin/receptor /usr/bin/receptor
RUN pip install --upgrade pip
RUN pip install --upgrade pip; \
mkdir -p /var/run/receptor
RUN pip install --index-url https://gitlab.com/api/v4/projects/45741845/packages/pypi/simple -r /tmp/requirements.txt