This commit is contained in:
JMARyA 2025-04-17 14:49:06 +02:00
commit dae8fed78f
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 3690 additions and 0 deletions

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
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 -Syu --noconfirm && pacman -Syu --noconfirm openssl-1.1 tar xz zstd
COPY --from=builder /app/target/release/navos-site /navos-site
WORKDIR /
CMD ["/navos-site"]