geyser/Dockerfile
2025-05-13 19:32:22 +00:00

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"]