Files
skubelb/Dockerfile

12 lines
261 B
Docker
Raw Normal View History

2025-10-15 21:23:22 -07:00
# Build Stage
FROM rust:latest AS builder
WORKDIR /app
COPY . .
RUN cargo build --release
# Runtime Stage
FROM debian:stable-slim
WORKDIR /app
COPY --from=builder /app/target/release/handler .
2025-10-18 01:17:49 -07:00
COPY --from=builder /app/target/release/skubelb .
2025-10-15 21:23:22 -07:00
CMD ["./handler"]