From baeefc4b23adaf32b1a39db72128b01fafb9a9ab Mon Sep 17 00:00:00 2001 From: nethw <77455020+nethw@users.noreply.github.com> Date: Fri, 15 Jan 2021 23:45:55 +0100 Subject: [PATCH] fix(Docker): binary update on rebuild (#4279) --- docker/build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile index 648338b2a..db37eab90 100644 --- a/docker/build/Dockerfile +++ b/docker/build/Dockerfile @@ -26,5 +26,5 @@ ENTRYPOINT cd azerothcore/build && \ # copy the binary files "authserver" and "worldserver" files back to the host # - the directories "/binworldserver" and "/binauthserver" are meant to be bound to the host directories # - see docker/build/README.md to view the bindings - cp /azeroth-server/bin/worldserver /binworldserver && \ - cp /azeroth-server/bin/authserver /binauthserver + cp -f /azeroth-server/bin/worldserver /binworldserver && \ + cp -f /azeroth-server/bin/authserver /binauthserver