Skip to content

Commit 8bc7576

Browse files
committed
Fix Dockerfile binary path (aro build outputs to /app/app)
1 parent f1aea28 commit 8bc7576

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ FROM ghcr.io/arolang/aro-runtime:latest
2727
WORKDIR /app
2828

2929
# Copy compiled binary from builder
30-
COPY --from=builder /app/StatusPost ./StatusPost
30+
COPY --from=builder /app/app ./app
3131

3232
# Copy runtime assets (templates, openapi spec)
3333
COPY --from=builder /app/openapi.yaml ./
@@ -41,4 +41,4 @@ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
4141
CMD curl -f http://localhost:8080/ || exit 1
4242

4343
# Run the application
44-
CMD ["./StatusPost"]
44+
CMD ["./app"]

0 commit comments

Comments
 (0)