We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d7afd1 commit 2590bb4Copy full SHA for 2590bb4
docker/Dockerfile
@@ -3,14 +3,18 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS builder
3
4
RUN adduser odcompile -H -D
5
6
-COPY --chown=odcompile ./OpenDream/ /opendream
+WORKDIR /opendream
7
+
8
+COPY --chown=odcompile ./OpenDream/ .
9
10
RUN ln -s /opendream/DMCompiler_linux-x64/DMCompiler /usr/bin/ && \
11
ln -s /opendream/OpenDreamServer_linux-x64/Robust.Server /usr/bin
12
13
FROM builder
14
-COPY --chown=odcompile docker/run.sh /app
15
+WORKDIR /app
16
17
+COPY --chown=odcompile docker/run.sh .
18
19
USER odcompile
20
0 commit comments