Add a simple dockerfile for testing

Co-authored-by: Marshall <marshall@zed.dev>
This commit is contained in:
Max Brunsfeld 2024-03-18 12:34:57 -07:00
parent 210a032f59
commit 7b40eb1dd2
2 changed files with 12 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
target
.git

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM rust:1.76-buster
WORKDIR /app
RUN apt-get update
RUN apt-get install -y nodejs
COPY . .
CMD cargo test --all-features