diff --git a/rq/Dockerfile b/rq/Dockerfile new file mode 100644 index 0000000..0a7d9da --- /dev/null +++ b/rq/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine as downloader +RUN uname -a +RUN apk add --update --no-cache bash curl \ + && curl -sSLf https://raw.githubusercontent.com/dflemstr/rq/master/install.sh | bash -s -- -y -y \ + && apk del bash curl + +FROM scratch +COPY --from=downloader /usr/local/bin/rq /rq +ENTRYPOINT ["/rq"]