Skip to content

Commit

Permalink
chore: Make hadolint happy for mkdir -p -m …
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Mar 8, 2024
1 parent 510d5d2 commit 777024f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions base/bare/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ ARG guest_uid=1000
ARG guest_gid=${guest_uid}

# Add Coq group and user with sudo perms
# hadolint ignore=SC2174
RUN groupadd -g ${guest_gid} coq \
&& useradd --no-log-init -m -s /bin/bash -g coq -G sudo -p '' -u ${guest_uid} coq \
# Create dirs for user scripts
Expand Down
1 change: 1 addition & 0 deletions base/dual/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ ARG guest_uid=1000
ARG guest_gid=${guest_uid}

# Add Coq group and user with sudo perms
# hadolint ignore=SC2174
RUN groupadd -g ${guest_gid} coq \
&& useradd --no-log-init -m -s /bin/bash -g coq -G sudo -p '' -u ${guest_uid} coq \
# Create dirs for user scripts
Expand Down
1 change: 1 addition & 0 deletions base/single/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ ARG guest_uid=1000
ARG guest_gid=${guest_uid}

# Add Coq group and user with sudo perms
# hadolint ignore=SC2174
RUN groupadd -g ${guest_gid} coq \
&& useradd --no-log-init -m -s /bin/bash -g coq -G sudo -p '' -u ${guest_uid} coq \
# Create dirs for user scripts
Expand Down

0 comments on commit 777024f

Please sign in to comment.