fix: update Docker image to pass initial checks

This commit is contained in:
2025-08-14 07:46:08 -07:00
parent 6131f838c2
commit 4a43ab51ff
3 changed files with 12 additions and 6 deletions

View File

@@ -1,7 +1,9 @@
FROM alpine:3.22
RUN apk update && \
apk add ansible bash openssh-client py3-pip step-cli
apk add ansible bash git openssh-client py3-pip step-cli
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
WORKDIR /workspace
ENTRYPOINT ["/entrypoint.sh"]