-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f885e4f
commit dc357a6
Showing
3 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM node:16-alpine AS builder | ||
RUN apk update && apk add --no-cache libc6-compat | ||
RUN corepack enable && corepack prepare [email protected] --activate | ||
FROM node:18-alpine AS builder | ||
RUN apk add --no-cache libc6-compat | ||
RUN apk update | ||
|
||
WORKDIR /app | ||
|
||
RUN npm install turbo | ||
RUN npm install -g pnpm turbo | ||
|
||
COPY ../../. . | ||
|
||
|
@@ -23,7 +23,9 @@ RUN pnpm install | |
|
||
RUN pnpm run build --filter=core-auth0-actions... | ||
|
||
FROM node:18-alpine | ||
FROM node:18-alpine3.16 | ||
|
||
RUN apk --no-cache add openssl | ||
|
||
COPY --from=builder /app/apps/core-auth0-actions/dist . | ||
COPY --from=builder /app/node_modules/.pnpm/@prisma+client*/node_modules/.prisma/client/*.node . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters