14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
FROM alpine:3.17.2
|
|
|
|
RUN apk add --update bash ca-certificates openjdk8-jre-base nss git gradle && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
RUN git clone --single-branch --branch main https://github.com/RESOStandards/web-api-commander.git
|
|
|
|
WORKDIR web-api-commander
|
|
|
|
RUN gradle jar
|
|
|
|
ENTRYPOINT ["gradle"]
|
|
CMD ["tasks"]
|