github.com/alloyci/alloy-runner@v1.0.1-0.20180222164613-925503ccafd6/dockerfiles/build/Dockerfile.x86_64 (about)

     1  FROM alpine:3.4
     2  
     3  RUN apk add --no-cache bash ca-certificates git miniperl \ 
     4  	&& ln -s miniperl /usr/bin/perl
     5  
     6  RUN cd /tmp && \
     7  	apk add --no-cache -U openssl && \
     8  	wget https://github.com/git-lfs/git-lfs/releases/download/v2.3.1/git-lfs-linux-amd64-2.3.1.tar.gz && \
     9  	tar zxf git-lfs-linux-amd64-2.3.1.tar.gz && \
    10  	mv git-lfs-*/git-lfs /usr/bin/ && \
    11  	git lfs install && \
    12  	apk del --purge openssl && \
    13  	rm -rf /tmp/*
    14  
    15  COPY ./ /usr/bin
    16