Update Dockerfile

Fixing some dumb crap that caused vChat to not load, might as well remove the deploy file
This commit is contained in:
mel-byond
2021-01-07 11:52:32 +02:00
parent bdb006bb35
commit defd503419
+3 -5
View File
@@ -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" ]