aboutsummaryrefslogtreecommitdiffstats
path: root/src/aichat/Dockerfile
blob: 406dde201e6af01557e1cb538a48653f37e31c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rust:latest

RUN rustup target add x86_64-unknown-linux-musl
RUN apt update && apt install -y musl-tools musl-dev curl
RUN update-ca-certificates

RUN cargo install --target x86_64-unknown-linux-musl aichat

ADD src/aichat/entrypoint.sh /entrypoint.sh
ADD src/aichat/config.yaml /aichat_config_tpl.yaml

RUN chmod 755 entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]