cd1c6737e8
Dev — Build & local smoke test / build-smoke (pull_request) Successful in 2m11s
Cloud Run gen2 doesn't provide eth0 with a unicast IP, causing k3s flannel to crash on every container start. k3s was also wrong architecture for Cloud Run (HPA inside a container, k3s overhead for one process). Changes: - entrypoint.sh: replace k3s server with a bash watchdog loop that starts soul-demo directly and restarts it on crash (3s backoff) - Dockerfile.stage: remove k3s binary, soul-demo-image.tar, k3s manifests and their associated dirs/envvars; keep soul-demo binary only - stage.yaml: remove 'Download k3s binary' step; rename and simplify soul-demo build step to compile binary only (no OCI image/tar) - dev.yaml: update soul-demo placeholder step (binary not tar) - manifest.el: document HAVE_CURL requirement since manifest.el has no c_flags/link_flags directive support
64 lines
2.5 KiB
Docker
64 lines
2.5 KiB
Docker
# Dockerfile.stage — Stage build: landing server + soul-demo in one image.
|
|
#
|
|
# Both processes run in the same container:
|
|
# - neuron-web on port 8080 (landing page server)
|
|
# - soul-demo on port 7772 (demo chat, localhost only)
|
|
#
|
|
# All binaries (neuron-web, soul-demo) are pre-built by CI on the host runner
|
|
# before this Dockerfile runs. This keeps the Docker build single-stage with
|
|
# no compilation and no network downloads.
|
|
#
|
|
# CI pre-build steps (in stage.yaml):
|
|
# - neuron-web: built by `elb build` → dist/neuron-landing
|
|
# - soul-demo: compiled by cc on host → dist/soul-demo
|
|
|
|
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libcurl4t64 \
|
|
libssl3t64 \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& groupadd -r landing && useradd -r -g landing landing \
|
|
&& mkdir -p /srv/landing/assets /srv/landing/js /srv/landing/shares \
|
|
&& mkdir -p /srv/soul/engram-demo \
|
|
&& chown -R landing:landing /srv/landing /srv/soul
|
|
|
|
# neuron-web binary — produced by `elb build` in CI (linux/amd64)
|
|
COPY dist/neuron-landing /usr/local/bin/neuron-web
|
|
RUN chmod +x /usr/local/bin/neuron-web
|
|
|
|
# soul-demo binary — compiled by cc on host runner in CI
|
|
COPY dist/soul-demo /usr/local/bin/soul-demo
|
|
RUN chmod +x /usr/local/bin/soul-demo
|
|
|
|
# Engram snapshot — baked in so soul has memory from cold start
|
|
COPY dist/engram-snapshot.json /srv/soul/engram-demo/snapshot.json
|
|
|
|
COPY src/assets /srv/landing/assets
|
|
COPY dist/js /srv/landing/js
|
|
COPY src/llms.txt /srv/landing/llms.txt
|
|
# Pre-rendered HTML shells (about, terms, enterprise-terms, index) used as
|
|
# fallback when the El page-builder hasn't been seeded yet at startup.
|
|
# chown to the landing user so the El runtime's fs_write at startup can
|
|
# rewrite them with the freshly-rendered page (extracted JS asset paths,
|
|
# updated chat widget, etc.). Without this they stay as their COPY'd root-
|
|
# owned shells and the served HTML never reflects post-COPY source edits.
|
|
COPY src/about.html src/terms.html src/enterprise-terms.html src/index.html /srv/landing/
|
|
RUN chown landing:landing /srv/landing/about.html /srv/landing/terms.html /srv/landing/enterprise-terms.html /srv/landing/index.html /srv/landing/llms.txt
|
|
|
|
COPY dist/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
ENV LANDING_ROOT=/srv/landing
|
|
ENV PORT=8080
|
|
ENV NEURON_HOME=/srv/soul/engram-demo
|
|
ENV NEURON_PORT=7772
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["/usr/local/bin/entrypoint.sh"]
|