chore: Remove redundant `mkdir`

- If local folder ownership is for example `644` it will fail to handle the `COPY` regardless (while `744` would work).
- Creating the directory with higher permissions in the container does not appear to help.
This commit is contained in:
Brennan Kinney 2023-02-02 14:26:16 +13:00
parent e02e8be19f
commit 76b8f0c981
1 changed files with 1 additions and 2 deletions

View File

@ -6,8 +6,7 @@ RUN apk update && \
rm -rf /var/cache/apk/* && \
addgroup testssl && \
adduser -G testssl -g "testssl user" -s /bin/bash -D testssl && \
ln -s /home/testssl/testssl.sh /usr/local/bin/ && \
mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
ln -s /home/testssl/testssl.sh /usr/local/bin/
USER testssl
WORKDIR /home/testssl/