Files
DisCal-Discord-Bot/web/Dockerfile
NovaFox161 50e99d201b Migrate over to Spring WebFlux and rewrite API endpoints in Kotlin
API v1 has been discontinued

Add docker-compose for local development testing. Note: This is not persistent, attempting to run this for production will be very very bad
2021-05-04 16:14:57 -05:00

5 lines
133 B
Docker

FROM openjdk:8-jdk
MAINTAINER DreamExposure
COPY target/DisCal-Web.jar DisCal-Web.jar
ENTRYPOINT ["java", "-jar", "/DisCal-Web.jar"]