mirror of
https://github.com/atuinsh/atuin.git
synced 2024-12-25 16:39:18 +01:00
13 lines
285 B
Docker
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"]
|