Skip to content

Commit e2ead46

Browse files
committed
fix: update binary name in the dockerfile
1 parent c6b998b commit e2ead46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM docker.io/library/rust:1.82-alpine@sha256:466dc9924d265455aa73e72fd9cdac9db
22

33
WORKDIR /usr/src/app
44
COPY . .
5-
RUN cargo build --release && ls target && cp ./target/release/secbench /bin/secbench
5+
RUN cargo build --release && ls target && cp ./target/release/am-i-isolated /bin/am-i-isolated
66

77
FROM scratch AS final
8-
ENTRYPOINT ["/bin/secbench"]
9-
COPY --from=build /bin/secbench /bin/secbench
8+
ENTRYPOINT ["/bin/am-i-isolated"]
9+
COPY --from=build /bin/am-i-isolated /bin/am-i-isolated

0 commit comments

Comments
 (0)