1 2 3 4 5 6 7 8
FROM debian:bookworm-slim AS runtime WORKDIR /app COPY ./target/backend /app/backend EXPOSE 8080 CMD ["./backend"]