build: include requirements.yml

This commit is contained in:
Price Hiller 2023-01-27 16:24:47 -06:00
parent c6de75a093
commit 3a94b894b6
2 changed files with 8 additions and 0 deletions

View File

@ -39,4 +39,9 @@ __EOR__
COPY --from=build /app/.venv ./.venv
COPY . .
ENV PATH="${PATH}:/app/.venv/bin"
RUN <<__EOR__
ansible-galaxy install -r requirements.yml
__EOR__
ENTRYPOINT [ "/bin/sh" ]

3
requirements.yml Normal file
View File

@ -0,0 +1,3 @@
collections:
- name: community.docker
- name: ansible.utils