test drone check syntax
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM debian:bookworm-slim
|
||||
RUN apt-get update --yes && apt-get upgrade --yes && apt-get install --yes python3 python3-pip && rm -rf /var/lib/apt/lists/*
|
||||
RUN groupadd -r ansible && useradd -m -r -g ansible ansible
|
||||
USER ansible
|
||||
RUN pip install ansible
|
||||
WORKDIR /home/ansible
|
||||
ENV PATH="${PATH}:/home/ansible/.local/bin"
|
||||
COPY . /home/ansible
|
||||
RUN ansible-galaxy install -vvvv -r requirements.yml
|
Reference in New Issue
Block a user