An entry for the streamplace vod showcase
1
fork

Configure Feed

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

Update Dockerfile

+5 -2
+5 -2
packages/at-run/runner/Dockerfile
··· 11 11 12 12 WORKDIR /app 13 13 14 - # Copy package files 14 + # Copy all package.json files for workspace resolution 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/ 18 21 19 22 # Install dependencies 20 - RUN bun install --frozen-lockfile 23 + RUN bun install 21 24 22 25 # Copy source code 23 26 COPY packages/at-run/runtime ./packages/at-run/runtime