An entry for the streamplace vod showcase
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Resolve merge conflict in Dockerfile - use minimal package copying with frozen-lockfile

+2 -5
+2 -5
packages/at-run/runner/Dockerfile
··· 11 11 12 12 WORKDIR /app 13 13 14 - # Copy all package.json files for workspace resolution 14 + # Copy package files 15 15 COPY package.json bun.lock ./ 16 16 COPY packages/at-run/runtime/package.json ./packages/at-run/runtime/ 17 17 COPY packages/at-run/runner/package.json ./packages/at-run/runner/ 18 - COPY packages/at-run/cli/package.json ./packages/at-run/cli/ 19 - COPY apps/vod/package.json ./apps/vod/ 20 - COPY apps/web/package.json ./apps/web/ 21 18 22 19 # Install dependencies 23 - RUN bun install 20 + RUN bun install --frozen-lockfile 24 21 25 22 # Copy source code 26 23 COPY packages/at-run/runtime ./packages/at-run/runtime