geyser/Dockerfile
Merith-TK 79d2ca019d
Some checks failed
Build Docker Image on Commit / build-and-publish (push) Failing after 5s
move my configs from github to here
2025-05-12 19:32:15 +00:00

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