Skip to content

Commit fd30454

Browse files
committed
switch to debian slim for now
Signed-off-by: Tuan Anh Tran <[email protected]>
1 parent 8119280 commit fd30454

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ RUN cargo fetch
77
COPY src ./src
88
RUN cargo auditable build --release --locked
99

10-
FROM gcr.io/distroless/cc-debian12
10+
FROM debian:13-slim
1111

1212
LABEL org.opencontainers.image.authors="[email protected]" \
1313
org.opencontainers.image.url="https://github.com/tuananh/hyper-mcp" \
1414
org.opencontainers.image.source="https://github.com/tuananh/hyper-mcp" \
1515
org.opencontainers.image.vendor="github.com/tuananh/hyper-mcp" \
1616
io.modelcontextprotocol.server.name="io.github.tuananh/hyper-mcp"
1717

18+
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
19+
1820
WORKDIR /app
1921
COPY --from=builder /app/target/release/hyper-mcp /usr/local/bin/hyper-mcp
2022
ENTRYPOINT ["/usr/local/bin/hyper-mcp"]

0 commit comments

Comments
 (0)