Skip to content

Commit

Permalink
Add a simple dockerfile for testing
Browse files Browse the repository at this point in the history
Co-authored-by: Marshall <[email protected]>
  • Loading branch information
maxbrunsfeld and maxdeviant committed Mar 18, 2024
1 parent 210a032 commit 7b40eb1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
.git
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7b40eb1

Please sign in to comment.