diff --git a/Dockerfile.githubaction b/Dockerfile.githubaction index 86acdf6..da5a196 100644 --- a/Dockerfile.githubaction +++ b/Dockerfile.githubaction @@ -8,7 +8,7 @@ RUN cd /src && go tool cover -html coverage.out -o coverage.html FROM python:3.11-bullseye as build-tree-sitter RUN apt-get update -y && apt-get upgrade -y -RUN git clone https://github.com/tree-sitter/tree-sitter-javascript +RUN mkdir /src && cd /src && git clone https://github.com/tree-sitter/tree-sitter-javascript RUN python3 -m pip install tree_sitter COPY ./analysers/tree-sitter/build.py /src/build.py RUN cd /src && python3 build.py