feat: blog tags (#334)

* feat: blog tags

* feat: fit limit passed to function
This commit is contained in:
Kalidou Diagne
2025-04-18 17:30:22 +03:00
committed by GitHub
parent a9ec3101e7
commit dc415e1c5b
17 changed files with 223 additions and 161 deletions

View File

@@ -3,11 +3,17 @@ RUN apk add --no-cache git curl
WORKDIR /builder
COPY package.json yarn.lock ./
RUN corepack enable
RUN yarn install
# Copy manifests, lock file, and yarn config
COPY package.json yarn.lock .yarnrc.yml ./
# Enable corepack and install dependencies using the lockfile
RUN corepack enable
RUN yarn install --immutable
# Copy the rest of the application code
COPY . .
# Build the application
RUN yarn build
# Create image by copying build artifacts