atuin/Dockerfile
2021-04-13 21:31:41 +00:00

13 lines
285 B
Docker

# 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"]