diff --git a/CHANGELOG.md b/CHANGELOG.md index 1570790..a666c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.11.3](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.2...v2.11.3) (2025-03-20) + + + ## [2.11.2](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.11.1...v2.11.2) (2025-03-15) @@ -31,12 +35,3 @@ -# [2.9.0](https://github.com/ghoshRitesh12/aniwatch-api/compare/v2.8.0...v2.9.0) (2024-12-23) - - -### Features - -* **cache:** add Cache-Control middleware and update .env.example ([f1f5db8](https://github.com/ghoshRitesh12/aniwatch-api/commit/f1f5db84f98818af2c047ea375832e5ded5f021a)) - - - diff --git a/Dockerfile b/Dockerfile index 74a2e68..f0bee79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,9 @@ LABEL org.opencontainers.image.source=https://github.com/ghoshRitesh12/aniwatch- LABEL org.opencontainers.image.description="Node.js API for obtaining anime information from hianime.to" LABEL org.opencontainers.image.licenses=MIT +# install curl for healthcheck +RUN apk add --no-cache curl + # create a non-privileged user RUN addgroup -S aniwatch && adduser -S zoro -G aniwatch diff --git a/package.json b/package.json index 0dbffdc..6d71670 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aniwatch-api", - "version": "2.11.2", + "version": "2.11.3", "description": "Node.js API for obtaining anime information from hianime.to", "main": "src/server.ts", "type": "module",