Merge pull request #3341 from poisonbl/3336-fix-Docker-ONBUILD-chown-error

Fixes evennia/evennia#3336 - Dockerfile's ONBUILD command fails at --chown=evennia
This commit is contained in:
Griatch 2023-11-26 12:51:52 +01:00 committed by GitHub
commit 385467b3b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ COPY . /usr/src/evennia
# add the game source when rebuilding a new docker image from inside
# a game dir
ONBUILD COPY --chown=evennia . /usr/src/game
ONBUILD COPY . /usr/src/game
# make the game source hierarchy persistent with a named volume.
# mount on-disk game location here when using the container