mirror of
https://github.com/Sheldan/OnePlusBot.git
synced 2026-06-18 23:52:36 +00:00
8 lines
175 B
Docker
8 lines
175 B
Docker
FROM amazoncorretto:17.0.8-alpine3.18
|
|
MAINTAINER Sheldan
|
|
VOLUME /tmp
|
|
ADD config/* /config/
|
|
ADD wrapper/*.sh /
|
|
RUN chmod +x /start.sh
|
|
ADD bot/app.jar /app.jar
|
|
CMD ["/start.sh"] |