- [Release notes](https://github.com/editorconfig-checker/editorconfig-checker/releases) - [Commits](https://github.com/editorconfig-checker/editorconfig-checker/compare/2.6.0...2.7.0) Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
		
			
				
	
	
		
			38 lines
		
	
	
		
			859 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			859 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:bullseye-slim
 | 
						|
 | 
						|
ARG DEBIAN_FRONTEND=noninteractive
 | 
						|
RUN apt-get update && apt-get install -y --no-install-recommends \
 | 
						|
    ca-certificates \
 | 
						|
    file \
 | 
						|
    git \
 | 
						|
    subversion \
 | 
						|
    python3 \
 | 
						|
    build-essential \
 | 
						|
    gawk \
 | 
						|
    unzip \
 | 
						|
    libncurses5-dev \
 | 
						|
    zlib1g-dev \
 | 
						|
    libssl-dev \
 | 
						|
    libelf-dev \
 | 
						|
    wget \
 | 
						|
    rsync \
 | 
						|
    time \
 | 
						|
    qemu-utils \
 | 
						|
    ecdsautils \
 | 
						|
    lua-check \
 | 
						|
    shellcheck \
 | 
						|
    && apt-get clean \
 | 
						|
    && 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.7.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
 | 
						|
USER gluon
 | 
						|
 | 
						|
VOLUME /gluon
 | 
						|
WORKDIR /gluon
 |