diff --git a/.github/workflows/deployer_1.1-beta.yml b/.github/workflows/deployer_1.1-beta.yml index 9e9318c..8253dfb 100644 --- a/.github/workflows/deployer_1.1-beta.yml +++ b/.github/workflows/deployer_1.1-beta.yml @@ -53,13 +53,13 @@ jobs: - name: Build and Push Docker image run: | # Build Docker image and tag it with the current commit SHA - docker build -t ghcr.io/dcup-dev/dcup:v1.1.0-beta . + docker build -t ghcr.io/dcup-dev/dcup:v1.1.2-beta . # Push the image to GitHub Container Registry - docker push ghcr.io/dcup-dev/dcup:v1.1.0-beta + docker push ghcr.io/dcup-dev/dcup:v1.1.2-beta # Optionally, tag the image with the "latest" tag for easy access - docker tag ghcr.io/dcup-dev/dcup:v1.1.0-beta ghcr.io/dcup-dev/dcup:latest + docker tag ghcr.io/dcup-dev/dcup:v1.1.2-beta ghcr.io/dcup-dev/dcup:latest docker push ghcr.io/dcup-dev/dcup:latest - name: Logout from Docker diff --git a/Dockerfile b/Dockerfile index 2241a8f..8c4cfc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source="https://github.com/Dcup-dev/dcup" LABEL org.opencontainers.image.description="Dcup RAG-as-a-Service platform" LABEL org.opencontainers.image.licenses="GPL-3.0" LABEL org.opencontainers.image.title="Dcup RAG-as-a-Service" -LABEL org.opencontainers.image.version="v1.1.0-beta" +LABEL org.opencontainers.image.version="v1.1.2-beta" LABEL org.opencontainers.image.authors="Ali Amer " # Install required OS packages including Python RUN apk add --no-cache libc6-compat python3 py3-pip @@ -47,4 +47,4 @@ EXPOSE 8080 USER nextjs -ENTRYPOINT ["docker-entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["docker-entrypoint.sh"] diff --git a/lib/Plans.ts b/lib/Plans.ts index 055be23..736e72e 100644 --- a/lib/Plans.ts +++ b/lib/Plans.ts @@ -9,31 +9,37 @@ export const Plans = { connections: 1, pages: 10, retrievals: 20, + price: 0 }, BASIC: { connections: 10, pages: 50, retrievals: 250, + price: 14.99 }, PRO: { connections: Infinity, pages: 100, retrievals: 500, + price: 29.99 }, BUSINESS: { connections: Infinity, pages: 5_000, retrievals: 10_000, + price: 59.99, }, ENTERPRISE: { connections: Infinity, pages: 10_000, retrievals: Infinity, + price: 399.99, }, OS: { connections: Infinity, pages: Infinity, retrievals: Infinity, + price: 0, } }