Skip to content

Commit 32fc2d5

Browse files
committed
fix: Correct Dockerfile to reference the correct build stage for server binary copy
- Change the build stage reference from 'build' to 'builder' for copying the server binary.
1 parent 272e902 commit 32fc2d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ FROM debian:bullseye-slim
1818

1919
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
2020

21-
COPY --from=build /bin/server /bin/
21+
COPY --from=builder /bin/server /bin/
2222
COPY config.yaml .
2323

2424
USER 1000

0 commit comments

Comments
 (0)