/bin/sh: 1: ./archive.sh: Permission denied
I've my sh script, to download & extract archive with resources
but "Permission denied", is it impossible to execute my sh scripts ?
15 Replies
Project ID:
0a331e59-5347-402a-82a3-341d3f7cfe3b
0a331e59-5347-402a-82a3-341d3f7cfe3b
nixpacks or Dockerfile?
Dockerfile
then you need to do
--chmod=755
when copying in the scripthm... I'll lookup for it thx)
yeah... I just don't do copy, so I guess I'll try
chmod 755 ./archive.sh
if you don't do copy how does the script end up in the final image?
ADD . /app
ADD is not recommended
Solution
hm, so I need to do:
?
yep
thx, I'll try it now
oh, yeah, that works, thx <3
no problem!