This repository has no description
0

Configure Feed

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

core / localinfra / web.Dockerfile
440 B 18 lines
1# Development only. Not for production use. 2FROM node:24-slim 3 4RUN corepack enable && corepack install -g pnpm@11.10.0 5 6COPY <<'EOF' /usr/local/bin/web-entrypoint.sh 7#!/bin/sh 8set -eu 9corepack pnpm install --frozen-lockfile --store-dir /src/node_modules/.pnpm-store 10exec corepack pnpm exec vite dev --host 0.0.0.0 11EOF 12RUN chmod +x /usr/local/bin/web-entrypoint.sh 13 14WORKDIR /src 15 16EXPOSE 5174 17 18ENTRYPOINT ["/usr/local/bin/web-entrypoint.sh"]