Nuke repo

This commit is contained in:
Alois 2026-04-02 22:27:27 +02:00
commit 679a3db00c
70 changed files with 0 additions and 15598 deletions

View file

@ -1,20 +0,0 @@
# Build stage
FROM rust:latest AS builder
WORKDIR /app
COPY . .
RUN cargo build --release
# Runtime stage
FROM debian:sid
WORKDIR /app
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/iota .
EXPOSE 1984
CMD ["./iota"]