mirror of
https://github.com/dathere/ckan_geoconnex_bulk_runner.git
synced 2026-07-05 15:12:20 +00:00
9 lines
207 B
Docker
9 lines
207 B
Docker
FROM rust:1.96 AS builder
|
|
WORKDIR /app
|
|
RUN rustup set profile minimal
|
|
COPY . .
|
|
RUN cargo build --release
|
|
|
|
FROM ubuntu:latest
|
|
COPY --from=builder /app/target/release/bulk_loader /
|
|
ENTRYPOINT ["/bulk_loader"]
|