Skip to content

Commit 785e8c7

Browse files
committed
chore(linux-ev): Create justfile and dockerfile to simulate linux
1 parent e79e9b5 commit 785e8c7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

docker/linux/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM rust
2+
3+
WORKDIR /zentime
4+
5+
Run apt update
6+
Run apt install -y libasound2-dev

justfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
env-linux:
2+
docker build -f docker/linux/Dockerfile -t zentime-linux .
3+
docker run --volume $(pwd):/zentime -it zentime-linux bash
4+

0 commit comments

Comments
 (0)