fix(Docker): binary update on rebuild (#4279)

This commit is contained in:
nethw 2021-01-15 23:45:55 +01:00 committed by GitHub
parent d2d2d4384e
commit baeefc4b23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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