atuin/Dockerfile

13 lines
285 B
Docker
Raw Normal View History

2021-04-13 23:31:41 +02:00
# 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"]