Skip to content

Commit

Permalink
chown npm correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousben committed Dec 17, 2024
1 parent f56c7f1 commit ed3711b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ dockerfile = "dockerfiles/Dockerfile.builder_linux_aarch64"
pre-build = [
"apt-get update && apt-get install --assume-yes build-essential npm curl protobuf-compiler",
"dpkg --add-architecture $CROSS_DEB_ARCH",
#"mkdir -p /.npm",
#"chown -R 1000:1000 /.npm"
"mkdir -p /.npm",
"chown -R 1001:128 /.npm"
]

[target.x86_64-unknown-linux-gnu]
dockerfile = "dockerfiles/Dockerfile.builder_linux_x86"
pre-build = [
#"mkdir -p /.npm",
#"chown -R 1000:1000 /.npm"
"mkdir -p /.npm",
"chown -R 1001:128 /.npm"
]

0 comments on commit ed3711b

Please sign in to comment.