pijul-docker/dockerfile

11 lines
267 B
Plaintext
Raw Normal View History

2024-01-14 15:58:22 +01:00
FROM alpine:latest
2024-01-14 17:13:02 +01:00
2024-01-14 16:27:04 +01:00
RUN apk update && apk upgrade --no-cache
2024-01-14 20:09:40 +01:00
RUN apk add openssh pkgconf cargo openssl-dev libsodium-dev xxhash
2024-01-14 18:37:31 +01:00
RUN cargo install pijul --version "~1.0.0-beta"
2024-01-15 06:29:40 +01:00
RUN apk add bash
RUN echo "export PATH=$PATH:~/.cargo/bin" >> /root/.bashrc
CMD ["bash"]