Skip to content

Commit 03be5ce

Browse files
committed
Desperately trying not to setup Docker locally
1 parent 8c735e1 commit 03be5ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ RUN adduser odcompile -H -D
55

66
WORKDIR /opendream
77

8-
COPY --chown=odcompile ./OpenDream/ .
8+
COPY --chown=odcompile ./OpenDream/
99

10-
RUN ln -s /opendream/DMCompiler_linux-x64/DMCompiler /usr/bin/ && \
11-
ln -s /opendream/OpenDreamServer_linux-x64/Robust.Server /usr/bin
10+
RUN ln -s /opendream/DMCompiler_linux-x64/DMCompiler /usr/bin/
11+
RUN ln -s /opendream/OpenDreamServer_linux-x64/Robust.Server /usr/bin/
1212

1313
FROM builder
1414

docker/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cp /app/code/* .
33
echo "---Preamble---"
44
echo Included compiler arguments: "$@"
55
echo "---Start Compiler---"
6-
DMCompiler "$@" test.dme
6+
/usr/bin/DMCompiler "$@" test.dme
77
echo "---End Compiler---"
88
echo "---Start Server---"
9-
Robust.Server --config-file server_config.toml --cvar opendream.json_path=/app/test.json
9+
/usr/bin/Robust.Server --config-file server_config.toml --cvar opendream.json_path=/app/test.json
1010
echo "---End Server---"

0 commit comments

Comments
 (0)