oopsie doodle
Some checks failed
Deploy / deploy (push) Failing after 41s

This commit is contained in:
Lee
2024-09-30 08:48:58 +01:00
parent 59ec24bbd9
commit dccda18b49
8 changed files with 20 additions and 24 deletions

View File

@ -1,8 +1,8 @@
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
# Install depends
# Install dependencies, including Python
FROM base AS deps
RUN apk add --no-cache libc6-compat
RUN apk add --no-cache libc6-compat python3 make g++ gcc
WORKDIR /app
COPY package.json* pnpm-lock.yaml* ./
RUN pnpm install --frozen-lockfile --quiet