diff options
-rw-r--r-- | apps/docker/Dockerfile | 2 | ||||
-rwxr-xr-x | bin/acore-docker-build | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/docker/Dockerfile b/apps/docker/Dockerfile index 6f55fbc99e..863d7ba51a 100644 --- a/apps/docker/Dockerfile +++ b/apps/docker/Dockerfile @@ -182,7 +182,7 @@ COPY --chown=$DOCKER_USER:$DOCKER_USER --from=build /azerothcore/env/dist/bin/au # with binaries and data included # #================================================================= -FROM authserver-local as worldserver +FROM worldserver-local as worldserver LABEL description="AC Production ready worldserver" diff --git a/bin/acore-docker-build b/bin/acore-docker-build index d7cc6e244e..efe890d445 100755 --- a/bin/acore-docker-build +++ b/bin/acore-docker-build @@ -5,8 +5,8 @@ cd /azerothcore bash acore.sh compiler build echo "Generating confs..." -cp -n "env/docker/etc/worldserver.conf.dockerdist" "env/dist/etc/worldserver.conf" -cp -n "env/docker/etc/authserver.conf.dockerdist" "env/dist/etc/authserver.conf" +cp -n "env/dist/etc/worldserver.conf.dockerdist" "env/dist/etc/worldserver.conf" +cp -n "env/dist/etc/authserver.conf.dockerdist" "env/dist/etc/authserver.conf" echo "Fixing EOL..." # using -n (new file mode) should also fix the issue |