File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,16 @@ RUN cargo fetch
7
7
COPY src ./src
8
8
RUN cargo auditable build --release --locked
9
9
10
- FROM gcr.io/distroless/cc-debian12
10
+ FROM debian:13-slim
11
11
12
12
LABEL org.opencontainers.image.authors=
"[email protected] " \
13
13
org.opencontainers.image.url="https://github.com/tuananh/hyper-mcp" \
14
14
org.opencontainers.image.source="https://github.com/tuananh/hyper-mcp" \
15
15
org.opencontainers.image.vendor="github.com/tuananh/hyper-mcp" \
16
16
io.modelcontextprotocol.server.name="io.github.tuananh/hyper-mcp"
17
17
18
+ RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
19
+
18
20
WORKDIR /app
19
21
COPY --from=builder /app/target/release/hyper-mcp /usr/local/bin/hyper-mcp
20
22
ENTRYPOINT ["/usr/local/bin/hyper-mcp" ]
You can’t perform that action at this time.
0 commit comments