summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 4ef5f15fd139c1e0b91f48f91157fab15208c28a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# no point in tagging the rust version, currently using nightly
FROM rust:slim-buster

RUN apt update && apt -y install libssl-dev libpq-dev pkg-config make
RUN rustup default nightly

WORKDIR /atuin
COPY . /atuin

RUN cargo build --release

ENTRYPOINT ["/atuin/target/release/atuin"]