- Strip builder stage from all Rust Dockerfiles; images now only contain the runtime and a pre-built binary copied from target/. - build.js: cargo builds all Rust binaries first (using all CPU cores), then copies them into Docker images. - .drone.yml: add cargo-build step before docker-build so kaniko can COPY the pre-compiled binaries without rebuilding inside the image.
19 lines
460 B
Docker
19 lines
460 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 \
|
|
&& 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"]
|