Skip to content

Commit

Permalink
chore(linux-ev): Create justfile and dockerfile to simulate linux
Browse files Browse the repository at this point in the history
  • Loading branch information
on3iro committed Jul 16, 2023
1 parent e79e9b5 commit b73e96f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM rust

WORKDIR /zentime

Run apt update
Run apt install -y libasound2-dev
4 changes: 4 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
env-linux:
docker build -f docker/linux/Dockerfile -t zentime-linux .
docker run --volume $(pwd):/zentime -it zentime-linux bash

0 comments on commit b73e96f

Please sign in to comment.