Skip to content

Commit 7b40eb1

Browse files
Add a simple dockerfile for testing
Co-authored-by: Marshall <[email protected]>
1 parent 210a032 commit 7b40eb1

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Diff for: .dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
.git

Diff for: Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM rust:1.76-buster
2+
3+
WORKDIR /app
4+
5+
RUN apt-get update
6+
RUN apt-get install -y nodejs
7+
8+
COPY . .
9+
10+
CMD cargo test --all-features

0 commit comments

Comments
 (0)