💚 fix ci builds please
Some checks failed
Semver / semver (push) Failing after 26s
Build Docker Image / build-image (push) Successful in 55s

This commit is contained in:
Rose 2024-10-16 14:17:09 -05:00
parent df376480d5
commit 0e4d363af9
No known key found for this signature in database
8 changed files with 182 additions and 405 deletions

View file

@ -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 . .