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 fa110b1 commit 0924e77Copy full SHA for 0924e77
.github/workflows/docker.yml
@@ -35,6 +35,7 @@ jobs:
35
with:
36
platforms: linux/amd64,linux/arm64
37
push: true
38
+ provenance: mode=max
39
tags: |
40
${{ env.IMAGE_NAME }}:${{ inputs.version }}
41
${{ env.IMAGE_NAME }}:latest
Dockerfile
@@ -9,9 +9,11 @@ COPY ./src ./src
9
RUN cargo build --release
10
RUN ls -lh target
11
12
-FROM alpine
+FROM alpine:latest
13
14
COPY --from=builder /usr/src/app/target/*-unknown-linux-musl/release/rust-mcp-filesystem rust-mcp-filesystem
15
16
-ENTRYPOINT ["./rust-mcp-filesystem"]
+RUN adduser -D -s /bin/sh rust-mcp-user
17
+USER rust-mcp-user
18
19
+ENTRYPOINT ["./rust-mcp-filesystem"]
0 commit comments