mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-26 19:21:43 +00:00
10 lines
199 B
Docker
10 lines
199 B
Docker
FROM openjdk:8-jdk-alpine
|
|
MAINTAINER Sheldan
|
|
VOLUME /tmp
|
|
ADD bot/app.jar /app.jar
|
|
ADD config/* /config/
|
|
VOLUME ["/config"]
|
|
VOLUME ["/logs"]
|
|
ADD wrapper/*.sh /
|
|
RUN chmod +x /start.sh
|
|
CMD ["/start.sh"] |