[sonic-slave]: Fix issue "no space left on disk" while trying to add user in docker (#233)

Note: related to https://github.com/docker/docker/issues/5419

Signed-off-by: Petro Karashchenko <petro.karashchenko@caviumnetworks.com>
This commit is contained in:
Petro Karashchenko 2017-02-01 21:56:50 +02:00 committed by lguohan
parent 1c074367a1
commit fbe2721543

View File

@ -99,7 +99,7 @@ ARG guid
RUN groupadd -f -r -g $guid g$user
RUN useradd $user -u $uid -g $guid -d /var/$user -m -s /bin/bash
RUN useradd $user -l -u $uid -g $guid -d /var/$user -m -s /bin/bash
RUN gpasswd -a $user docker