We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a82db5 commit bc2a175Copy full SHA for bc2a175
.dockerignore
@@ -0,0 +1,5 @@
1
+target/
2
+Dockerfile
3
+.git
4
+.env
5
+.env.example
Dockerfile
@@ -0,0 +1,21 @@
+FROM rust:1.88.0-slim-bookworm AS builder
+
+WORKDIR /app
+RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates && rm -rf /var/lib/apt/lists/*
6
7
+COPY . .
8
9
+RUN cargo build --release
10
11
+FROM debian:bookworm-slim
12
13
+COPY --from=builder /app/target/release/rust_ogc_features_server /usr/local/bin/rust_ogc_features_server
14
15
16
17
+COPY config.toml .
18
19
+EXPOSE 3022
20
21
+CMD ["rust_ogc_features_server"]
0 commit comments