2026-02-07 12:24:42 +08:00
|
|
|
FROM debian:bookworm-slim
|
|
|
|
|
|
2026-02-22 01:13:03 +08:00
|
|
|
ARG TARGETARCH
|
2026-02-07 12:24:42 +08:00
|
|
|
|
2026-02-22 01:13:03 +08:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
COPY build/linux-${TARGETARCH}/aether-proxy /usr/local/bin/aether-proxy
|
2026-02-07 12:24:42 +08:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["aether-proxy"]
|