mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 06:14:17 +00:00
13 lines
278 B
Docker
13 lines
278 B
Docker
FROM alpine:3.20
|
|
|
|
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
|