Have monerod be chown'd to monero:nogroup

On some Docker setups, the monero user doesn't have a monero group for some
reason. This handles that edge case.
This commit is contained in:
Luke Parker 2024-02-10 20:37:59 -05:00
parent 95b7460907
commit 62a619a312
No known key found for this signature in database

View file

@ -45,7 +45,7 @@ RUN tar -xvjf monero-linux-{arch}-v{MONERO_VERSION}.tar.bz2 --strip-components=1
let run_monero = format!(
r#"
COPY --from=monero --chown=monero {monero_binary} /bin
COPY --from=monero --chown=monero:nogroup {monero_binary} /bin
EXPOSE {ports}