Questions tagged [casa]
1 questions
0
votes
0 answers
How to add user properly in docker in nixes, in order to fix CASA's Fluid-Attacks-Result warning?
docker file:
FROM nixos/nix
# https://stackoverflow.com/questions/27701930/how-to-add-users-to-docker-container
# RUN useradd -ms /bin/bash newuser
# USER newuser
RUN useradd -m matthew
USER matthew
WORKDIR /usr/scan
COPY . /usr/scan/
RUN mkdir…

thecr0w
- 2,148
- 4
- 33
- 59