Added BepInEx Support (#148)

* Memory Check

* Removed path on ci

* Valheim BepInEx support

* Separation of concern.

* Added switch for installation

* Yall dont need to run the dev compose ;P

* Refactored to make debugging easier

* Updated to use quotes and readme
This commit is contained in:
Michael
2021-02-22 17:49:21 -08:00
committed by GitHub
parent fc2a59226a
commit 474ed4d5cd
28 changed files with 757 additions and 422 deletions

View File

@@ -6,7 +6,8 @@ FROM rust:latest as RustBuilder
WORKDIR /data/odin
COPY . .
RUN cargo build --release
RUN cargo build --release && find . ! -name 'odin' -type f -exec rm -f {} +
ENTRYPOINT ["/data/odin/target/release/odin"]
CMD ["--version"]