diff --git a/Dockerfile b/Dockerfile index dad7764..f3511d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,12 +26,11 @@ RUN apk add --no-cache wget file COPY --from=builder /app/server . RUN chmod +x server -COPY --from=builder /app/web ./web COPY --from=builder /app/docs ./docs EXPOSE 8080 HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:8080/web || exit 1 + CMD wget --no-verbose --tries=1 --spider http://localhost:8080/health || exit 1 CMD ["./server"]