Fix setup wizard not running on docker version

This commit is contained in:
Jordan Brown
2018-10-16 22:17:15 -04:00
parent 038dd7f2a9
commit 077e625529
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -33,7 +33,6 @@ WORKDIR /app
COPY --from=build /app .
COPY --from=build /src/build/tgs.docker.sh tgs.sh
RUN mkdir /config_data && touch /config_data/appsettings.Production.json
VOLUME ["/config_data", "/tgs_logs", "/app/lib"]
ENTRYPOINT ["./tgs.sh"]
+1
View File
@@ -1,5 +1,6 @@
#!/bin/sh
touch /config_data/appsettings.Production.json
ln -s /config_data/appsettings.Production.json /app/appsettings.Production.json
exec dotnet Tgstation.Server.Host.Console.dll "$@"