20 lines
420 B
Docker
20 lines
420 B
Docker
FROM rust:latest AS builder
|
|
WORKDIR /app
|
|
|
|
RUN apt update && apt install -y musl-tools
|
|
RUN rustup target add x86_64-unknown-linux-musl
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/noxis-proxy /app/noxis-proxy
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
EXPOSE 7654
|
|
|
|
ENTRYPOINT ["/app/noxis-proxy"]
|