23 lines
610 B
Docker
23 lines
610 B
Docker
FROM rust:buster as builder
|
|
|
|
RUN rustup default nightly
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN cargo build --release
|
|
|
|
FROM git.hydrar.de/navos/navos:latest
|
|
|
|
RUN pacman-key --init && \
|
|
pacman-key --populate archlinux && \
|
|
pacman-key --populate navos && \
|
|
[[ "$(uname -m)" == arm* || "$(uname -m)" == aarch64 ]] && pacman-key --populate archlinuxarm || true && \
|
|
pacman -Syu --noconfirm && \
|
|
pacman -Syu --noconfirm openssl-1.1 tar xz zstd curl base-devel git rsync
|
|
|
|
COPY --from=builder /app/target/release/pacco /usr/bin/pacco
|
|
|
|
WORKDIR /
|
|
|
|
CMD ["/usr/bin/pacco", "serve", "--config", "/config.toml"]
|