Fix(Docker): Add missing dollar sign (#18314)

This commit is contained in:
Mike Delago 2024-02-13 10:34:29 -05:00 committed by GitHub
parent c71531ee0d
commit e282f6caaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,7 @@ RUN groupadd --gid "$GROUP_ID" "$DOCKER_USER" && \
passwd -d "$DOCKER_USER" && \
chown -R "$DOCKER_USER:$DOCKER_USER" /azerothcore
COPY --chown=$USER_ID:GROUP_ID \
COPY --chown=$USER_ID:$GROUP_ID \
--chmod=755 \
apps/docker/entrypoint.sh /azerothcore/entrypoint.sh