All checks were successful
continuous-integration/drone/push Build is passing
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. Reviewed-on: #1 PR #1
13 lines
168 B
Docker
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 [""] |