You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM node:20-slim as base
RUN apt-get update && \
npm install -g pnpm
WORKDIR /app
FROM base as deps
COPY pnpm-workspace.yaml ./
COPY package.json pnpm-lock.yaml ./
COPY packages ./packages
COPY apps ./apps
RUN pnpm install --frozen-lockfile
in order to use a package from the monorepo. we might as well abstract this into a ensnode-deps image that we can extend from in each of these dockerfiles
The text was updated successfully, but these errors were encountered:
in all of our docker images we keep doing
in order to use a package from the monorepo. we might as well abstract this into a
ensnode-deps
image that we can extend from in each of these dockerfilesThe text was updated successfully, but these errors were encountered: