From 8926cd87d43f67dcad1374dc36485b31441355a6 Mon Sep 17 00:00:00 2001 From: Jon Ervine Date: Wed, 19 May 2021 22:19:37 +0800 Subject: [PATCH] Aded user --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index e15d5d6..19bcf71 100644 --- a/Containerfile +++ b/Containerfile @@ -8,7 +8,7 @@ ARG ANSIBLE_GALAXY_CLI_COLLECTION_OPTS= ADD _build /build WORKDIR /build -RUN auseradd -c "Ansible User" -M -u 1000 ansible && ansible-galaxy role install -r requirements.yml --roles-path /usr/share/ansible/roles +RUN useradd -c "Ansible User" -M -u 1000 ansible && ansible-galaxy role install -r requirements.yml --roles-path /usr/share/ansible/roles RUN ansible-galaxy collection install $ANSIBLE_GALAXY_CLI_COLLECTION_OPTS -r requirements.yml --collections-path /usr/share/ansible/collections FROM $PYTHON_BUILDER_IMAGE as builder