gitdataai/docker/static.Dockerfile
ZhenYi 759ce7444e
Some checks are pending
CI / Rust Lint & Check (push) Waiting to run
CI / Rust Tests (push) Waiting to run
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions
build(docker): 在多个 Docker 镜像中添加 Git 安装
2026-04-16 21:25:55 +08:00

19 lines
464 B
Docker

# Runtime only — binary built externally via cargo
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY target/x86_64-unknown-linux-gnu/release/static-server /app/static-server
ENV RUST_LOG=info
ENV STATIC_LOG_LEVEL=info
ENV STATIC_BIND=0.0.0.0:8081
ENV STATIC_ROOT=/data
ENV STATIC_CORS=true
EXPOSE 8081
ENTRYPOINT ["/app/static-server"]