FROM rust as builder COPY . /app WORKDIR /app RUN cargo build --release FROM ubuntu RUN apt-get update RUN apt-get install -y gnupg COPY --from=builder /app /app WORKDIR /app CMD ["/app/target/release/me-site"]