💚 fix ci builds please
This commit is contained in:
parent
df376480d5
commit
0e4d363af9
8 changed files with 182 additions and 405 deletions
10
Dockerfile
10
Dockerfile
|
|
@ -1,15 +1,17 @@
|
|||
FROM node:21 AS base
|
||||
FROM node:21-alpine AS base
|
||||
ENV CI=true
|
||||
|
||||
FROM base AS builder
|
||||
|
||||
RUN corepack enable
|
||||
RUN yarn set version canary
|
||||
RUN yarn config set nodeLinker node-modules
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY .gitignore .gitignore
|
||||
COPY package.json ./
|
||||
COPY yarn.lock ./
|
||||
COPY package.json ./
|
||||
RUN yarn set version canary
|
||||
RUN yarn config set nodeLinker node-modules
|
||||
RUN yarn install --immutable
|
||||
|
||||
COPY . .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue