feat: init commit

This commit is contained in:
2021-05-01 08:06:05 +08:00
parent a2eb0b5bf3
commit ee447c4150
3 changed files with 13 additions and 0 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,5 @@
.idea/
# ---> macOS # ---> macOS
# General # General
.DS_Store .DS_Store

View File

@@ -0,0 +1,4 @@
FROM rustembedded/cross:x86_64-unknown-linux-gnu-0.2.1
RUN apt-get update && \
apt-get install --assume-yes libssl-dev

View File

@@ -0,0 +1,7 @@
_:
@just --list
# build docker image
build:
docker build . -t rustembedded/cross:x86_64-unknown-linux-gnu-openssl-0.2.1