added Dockerfile

This commit is contained in:
Louis Vallat 2020-05-11 13:58:56 +02:00
parent 67d607ad36
commit 12b2a4f723

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM openjdk:latest
COPY . /usr/src/RedditReposterBot/
WORKDIR /usr/src/RedditReposterBot/
CMD [ "java", "-jar", "RedditReposterBot-full.jar" ]