17 lines
273 B
Docker
17 lines
273 B
Docker
FROM rust:buster as builder
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN cargo build --release
|
|
|
|
FROM archlinux
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S --noconfirm gnupg ca-certificates openssl-1.1
|
|
|
|
COPY --from=builder /app/target/release/me-site /me-site
|
|
|
|
WORKDIR /
|
|
|
|
CMD ["/me-site"]
|