Skip to content
Snippets Groups Projects
Commit 48b70a9e authored by Martin Weinelt's avatar Martin Weinelt Committed by Jan-Niklas Burfeind
Browse files

contrib: Dockerfile: add editorconfig-checker


Co-authored-by: default avatarJan-Niklas Burfeind <git@aiyionpri.me>
version bump to 2.6.0
aligned indentation
parent c93eb80b
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ...@@ -24,6 +24,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN mkdir /tmp/ec &&\
wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.6.0/ec-linux-amd64.tar.gz &&\
tar -xvzf /tmp/ec/ec-linux-amd64.tar.gz &&\
mv bin/ec-linux-amd64 /usr/local/bin/editorconfig-checker &&\
rm -rf /tmp/ec
RUN useradd -d /gluon gluon RUN useradd -d /gluon gluon
USER gluon USER gluon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment