tree-sitter/Dockerfile
Max Brunsfeld 7b40eb1dd2 Add a simple dockerfile for testing
Co-authored-by: Marshall <marshall@zed.dev>
2024-03-18 12:35:10 -07:00

10 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