diff --git a/cli53/Dockerfile b/cli53/Dockerfile new file mode 100644 index 0000000..5a38fb7 --- /dev/null +++ b/cli53/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine:latest + +RUN apk update && apk add \ + ca-certificates \ + python \ + py-pip \ + && rm -rf /var/cache/apk/* \ + && pip install cli53 + +ENTRYPOINT [ "cli53" ]