Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2m18s
7 lines
121 B
Docker
7 lines
121 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk --no-cache add openssh-client ansible nodejs npm
|
|
|
|
WORKDIR /app
|
|
|
|
CMD [ "ansible", "--version" ]
|