mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-09 14:18:02 -05:00
feat: blog tags (#334)
* feat: blog tags * feat: fit limit passed to function
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user