From defd5034199a592de68cf960a76918b2d120f9cd Mon Sep 17 00:00:00 2001 From: mel-byond <75690100+mel-byond@users.noreply.github.com> Date: Thu, 7 Jan 2021 11:52:32 +0200 Subject: [PATCH] Update Dockerfile Fixing some dumb crap that caused vChat to not load, might as well remove the deploy file --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d30d4ab78c..d7cffbcfb68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,9 +33,7 @@ FROM dm_base as build COPY . . -RUN DreamMaker -max_errors 0 vorestation.dme \ - && tools/deploy.sh /deploy \ - && rm /deploy/*.dll +RUN DreamMaker -max_errors 0 vorestation.dme FROM dm_base @@ -55,8 +53,8 @@ RUN apt-get update \ && mkdir -p /root/.byond/bin COPY --from=rust_g /rust_g/target/release/librust_g.so /root/.byond/bin/rust_g -COPY --from=build /deploy ./ +COPY --from=build /vorestation/ ./ -VOLUME [ "/vorestation/config", "/vorestation/data" ] +#VOLUME [ "/vorestation/config", "/vorestation/data" ] ENTRYPOINT [ "DreamDaemon", "vorestation.dmb", "-port", "2303", "-trusted", "-close", "-verbose" ]