0

I have a bash file which uses ACLs to give permission to certain users. The bash file looks like

sudo setfacl -m u:ChiefCommander:rwx /home/Army$i

When i am building a Docker Container using this file, it says

line 6 : setfacl : command not found

What can i do to resolve this problem?

TaDev
  • 3
  • 2

1 Answers1

0

Installing the acl first and then try run the above command

farid
  • 1