add docker deployment stack and vps setup docs

This commit is contained in:
Kellan Drucquer 2026-04-03 22:10:35 -04:00
parent d301c7b4f3
commit 1fccb16dba
8 changed files with 544 additions and 0 deletions

View file

@ -0,0 +1,15 @@
FROM oven/bun:1.3.11
WORKDIR /app
ENV NODE_ENV=production
COPY . .
RUN apt-get update \
&& apt-get install -y --no-install-recommends python3 python3-pip \
&& rm -rf /var/lib/apt/lists/* \
&& pip3 install --no-cache-dir -r services/ingest-options/py/requirements.txt \
&& bun install --frozen-lockfile
ENTRYPOINT ["bun"]