Files
OnePlusBot/deployment/image-packaging/src/main/docker/oneplusbot/Dockerfile
Sheldan 71896bf3b6 [OPB-3] adding initial structure of oneplus bot with deployment and selected modules
adding volume configuration to grafana and postgres
adding .env file for variables in docker compose
adding handling of password for prometheus
adding port configuration for more services
adding custom starboard notifications
updating readme and adding release job
 adding settings.xml for build
2021-03-23 10:12:52 +01:00

8 lines
163 B
Docker

FROM openjdk:8-jdk-alpine
MAINTAINER Sheldan
VOLUME /tmp
ADD bot/app.jar /app.jar
ADD config/* /config/
ADD wrapper/*.sh /
RUN chmod +x /start.sh
CMD ["/start.sh"]