Fix dep that breaks, add new tool
This commit is contained in:
parent
07c8c91c7d
commit
d7418c949d
1 changed files with 5 additions and 1 deletions
|
@ -22,7 +22,10 @@ RUN apt update -y -q \
|
||||||
libxml2-dev \
|
libxml2-dev \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
liblzma-dev \
|
liblzma-dev \
|
||||||
zlib1g-dev
|
zlib1g-dev \
|
||||||
|
sqlite3 \
|
||||||
|
libsqlite3-0 \
|
||||||
|
libsqlite3-dev
|
||||||
|
|
||||||
#Build arguments
|
#Build arguments
|
||||||
ARG osxcross_repo="tpoechtrager/osxcross"
|
ARG osxcross_repo="tpoechtrager/osxcross"
|
||||||
|
@ -62,6 +65,7 @@ RUN rustup target add x86_64-apple-darwin
|
||||||
RUN rustup component add clippy
|
RUN rustup component add clippy
|
||||||
RUN cargo install cargo-outdated
|
RUN cargo install cargo-outdated
|
||||||
RUN cargo install cargo-audit
|
RUN cargo install cargo-audit
|
||||||
|
RUN cargo install cargo-web
|
||||||
|
|
||||||
RUN cp /usr/x86_64-w64-mingw32/lib/*crt2.o \
|
RUN cp /usr/x86_64-w64-mingw32/lib/*crt2.o \
|
||||||
/home/rust/.rustup/toolchains/${RUST_VER}-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-gnu/lib/
|
/home/rust/.rustup/toolchains/${RUST_VER}-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-gnu/lib/
|
||||||
|
|
Loading…
Reference in a new issue