2025-09-17 13:33:21 -07:00

11 lines
235 B
Docker

FROM rust:alpine AS builder
COPY ./ /app
WORKDIR /app
RUN apk add musl-dev
RUN cargo build --release
FROM alpine:latest
COPY --from=builder /app/target/release/container-echo /container-echo
ENTRYPOINT ["/container-echo"]
EXPOSE 8080