conventi/Dockerfile
Rick Barenthin 6ab7cabbe3
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
feat: inital version of seperate docker image
This is a move of the conventi script and Dockerfile
out of the waitui repository. This tool is growing and
a seperate repository helps to manage the version
and fixing issues in the near future.
2022-07-25 20:06:56 +02:00

13 lines
168 B
Docker

FROM alpine:3.16.0
RUN apk --no-cache add \
git \
jq
COPY conventi.sh /usr/local/bin/
VOLUME /conventi
WORKDIR /conventi
ENTRYPOINT ["conventi.sh"]
CMD [""]