generated from oci/template
Some checks failed
Build Docker Image on Commit / build-and-publish (push) Failing after 5s
8 lines
No EOL
213 B
Docker
8 lines
No EOL
213 B
Docker
FROM eclipse-temurin:17.0.7_7-jre-alpine
|
|
RUN apk add wget jq bash
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /data
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] |