7 lines
154 B
Docker
7 lines
154 B
Docker
FROM alpine:3.22
|
|
RUN apk update && \
|
|
apk add ansible bash py3-pip step-cli
|
|
|
|
COPY --chmod=755 entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|