mirror of
https://github.com/kiranshila/Doplarr.git
synced 2026-03-31 06:24:10 -04:00
First go at docker, fixed typo in github action, moved config to env variable
This commit is contained in:
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@@ -32,4 +32,4 @@ jobs:
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
file: target/Doplarr.jar
|
||||
files: target/Doplarr.jar
|
||||
|
||||
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
||||
FROM clojure:openjdk-11-tools-deps
|
||||
MAINTAINER Kiran Shila <me@kiranshila.com>
|
||||
COPY . /usr/src/doplarr
|
||||
WORKDIR /usr/src/doplarr
|
||||
RUN clojure -T:build uberjar
|
||||
CMD ["java","-jar","Doplarr.jar"]
|
||||
2
deps.edn
2
deps.edn
@@ -9,6 +9,8 @@
|
||||
cheshire/cheshire {:mvn/version "5.10.1"}
|
||||
hato/hato {:mvn/version "0.8.2"}}
|
||||
|
||||
:jvm-opts ["-Dconfig=config.edn"]
|
||||
|
||||
:aliases {:build {:extra-paths ["build"]
|
||||
:deps {io.github.clojure/tools.build {:git/tag "v0.1.6" :git/sha "5636e61"}
|
||||
com.github.seancorfield/depstar {:mvn/version "2.1.278"}}
|
||||
|
||||
Reference in New Issue
Block a user