generated from oci/template
11 lines
262 B
Docker
11 lines
262 B
Docker
FROM eclipse-temurin:17-jre-jammy
|
|
|
|
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 ["/entrypoint.sh"]
|