mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
31 lines
903 B
Docker
31 lines
903 B
Docker
FROM golang:1.9.2
|
|
|
|
WORKDIR /go/src/github.com/github/linguist/tools/grammars
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - && \
|
|
apt-get update && \
|
|
apt-get install -y nodejs cmake && \
|
|
npm install -g season && \
|
|
cd /tmp && git clone https://github.com/vmg/pcre && \
|
|
mkdir -p /tmp/pcre/build && cd /tmp/pcre/build && \
|
|
cmake .. \
|
|
-DPCRE_SUPPORT_JIT=ON \
|
|
-DPCRE_SUPPORT_UTF=ON \
|
|
-DPCRE_SUPPORT_UNICODE_PROPERTIES=ON \
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
-DCMAKE_C_FLAGS="-fPIC $(EXTRA_PCRE_CFLAGS)" \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DPCRE_BUILD_PCRECPP=OFF \
|
|
-DPCRE_BUILD_PCREGREP=OFF \
|
|
-DPCRE_BUILD_TESTS=OFF \
|
|
-G "Unix Makefiles" && \
|
|
make && make install && \
|
|
rm -rf /tmp/pcre && \
|
|
cd /go && go get -u github.com/golang/dep/cmd/dep && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . .
|
|
RUN dep ensure && go install ./cmd/grammar-compiler
|
|
|
|
ENTRYPOINT ["grammar-compiler"]
|