We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1aea28 commit 8bc7576Copy full SHA for 8bc7576
Dockerfile
@@ -27,7 +27,7 @@ FROM ghcr.io/arolang/aro-runtime:latest
27
WORKDIR /app
28
29
# Copy compiled binary from builder
30
-COPY --from=builder /app/StatusPost ./StatusPost
+COPY --from=builder /app/app ./app
31
32
# Copy runtime assets (templates, openapi spec)
33
COPY --from=builder /app/openapi.yaml ./
@@ -41,4 +41,4 @@ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
41
CMD curl -f http://localhost:8080/ || exit 1
42
43
# Run the application
44
-CMD ["./StatusPost"]
+CMD ["./app"]
0 commit comments