mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-12 23:27:14 +00:00
14 lines
280 B
Docker
14 lines
280 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
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
|