blob: df13f63e19e78a814218cdf6b13f7d284da6f504 (
plain)
1
2
3
4
5
6
7
|
FROM rust:latest
RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev
RUN update-ca-certificates
RUN cargo install --target x86_64-unknown-linux-musl aichat
|