diff --git a/Dockerfile b/Dockerfile index 4818578..ec60e46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ -FROM eclipse-temurin:17-jre-alpine -RUN apk add wget jq bash -RUN rm -rf /var/cache/apk/* +FROM eclipse-temurin:17-jre-jammy -WORKDIR /data +RUN apt-get update && \ + apt-get install -y wget jq bash && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + + WORKDIR /data COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]