dotfiles-rs 0.1.2

A simple dot files manager for syncing dot files across machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM --platform=linux/x86_64/v8 rust:1.65.0-slim-buster as builder
RUN apt-get update \
    && apt-get install -y libssl-dev pkg-config \
    && rm -rf /var/lib/apt/lists/* 

FROM builder as build
COPY . /opt/dotfiles-rs/
WORKDIR /opt/dotfiles-rs
RUN cargo install --path .

FROM --platform=linux/x86_64/v8 debian:buster-slim as exec
RUN apt-get update \
    && apt-get install -y libssl-dev pkg-config \
    && rm -rf /var/lib/apt/lists/* 
COPY --from=build /usr/local/cargo/bin/dotfiles-rs /usr/local/bin/dotfiles-rs
RUN /usr/local/bin/dotfiles-rs -h
ENTRYPOINT ["/usr/local/bin/dotfiles-rs"]