waitui/build/conventi/Dockerfile
Rick Barenthin 1a370fb943
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
feat: add version and changelog update to pipeline
This adds a pipeline step to manage versions and the changelog file.
The files `.version.json` and `CHANGELOG.md` are also added with initial values.
2022-06-01 23:22:05 +02:00

13 lines
183 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 ["/usr/local/bin/conventi.sh"]
CMD [""]