2024-09-16 08:03:04 +02:00
|
|
|
FROM alpine:3.20
|
2024-09-15 19:17:46 +02:00
|
|
|
|
|
|
|
ENV ANSIBLE_LOG_PATH=" "
|
|
|
|
WORKDIR /playbook
|
|
|
|
ENTRYPOINT ["/bin/sh"]
|
|
|
|
|
|
|
|
RUN apk add --no-cache ansible ansible-core py3-passlib git openssh-client just
|
|
|
|
|
|
|
|
COPY . /playbook
|
|
|
|
|
|
|
|
RUN git rev-parse HEAD > /playbook/source-commit && \
|
|
|
|
rm -rf /playbook/.git && \
|
|
|
|
just roles
|