8 lines
162 B
Docker
8 lines
162 B
Docker
FROM alpine:3.22
|
|
RUN apk update && \
|
|
apk add bash py3-pip step-cli && \
|
|
pip3 install ansible
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|