mirror of
https://github.com/cloudflare/workers-rs.git
synced 2025-12-08 18:01:59 +00:00
11 lines
235 B
Docker
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
|