2023-03-07 18:05:33 -05:00
|
|
|
FROM alpine:3.17.2
|
2021-07-19 10:47:12 -04:00
|
|
|
|
2023-03-07 18:05:33 -05:00
|
|
|
RUN apk add --update bash ca-certificates openjdk8-jre-base nss git gradle && \
|
2021-07-19 10:47:12 -04:00
|
|
|
rm -rf /var/cache/apk/*
|
|
|
|
|
2022-09-28 13:00:43 -04:00
|
|
|
RUN git clone --single-branch --branch main https://github.com/RESOStandards/web-api-commander.git
|
2021-07-19 10:47:12 -04:00
|
|
|
|
|
|
|
WORKDIR web-api-commander
|
|
|
|
|
|
|
|
RUN gradle jar
|
|
|
|
|
|
|
|
ENTRYPOINT ["gradle"]
|
2022-09-28 13:00:43 -04:00
|
|
|
CMD ["tasks"]
|