generated from oci/template
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 29s
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"]
|