Dockerfile: fix mixed indentation (#2727)

This commit is contained in:
Jan-Niklas Burfeind 2022-12-18 20:59:03 +01:00 committed by GitHub
parent 047f4fb016
commit 04b9935b9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,10 @@ insert_final_newline = true
indent_style = tab
charset = utf-8
[Dockerfile]
indent_style = space
indent_size = 4
[/patches/**]
indent_style = unset
indent_size = unset

View File

@ -21,8 +21,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ecdsautils \
lua-check \
shellcheck \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -d /gluon gluon
USER gluon