mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:36:22 -04:00
11 lines
127 B
Docker
11 lines
127 B
Docker
FROM rust:1.76-buster
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y nodejs
|
|
|
|
COPY . .
|
|
|
|
CMD cargo test --all-features
|