- Mock app UIs (ElectrumX, LND, Fedimint, Bitcoin Core) + the "Not available" notice now use the Archipelago black theme and show the app's My-Apps icon. - Bitcoin Core gets its own UI (/app/bitcoin-core/) so it no longer shows Bitcoin Knots branding; the Knots-branded bitcoin-ui shell is reserved for Bitcoin Knots. - ElectrumX now serves the real electrs-ui shell (+ qrcode.js + a dummy /electrs-status) with the correct ElectrumX icon; "Electrs" renamed to ElectrumX. - My Apps: pre-install Bitcoin Knots again, drop ThunderHub, rename Electrs→ElectrumX. - App store no longer shows "Checking…" forever in demo — non-demoable apps show "No demo" immediately (skip the container-scan state). - Relay endpoint no longer reveals a real domain (randomised host). - Dockerfile/.dockerignore copy docker/electrs-ui into the backend image. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
32 lines
939 B
Docker
32 lines
939 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache wget curl docker-cli
|
|
|
|
# Copy package files
|
|
COPY neode-ui/package*.json ./
|
|
|
|
# Install Node dependencies (need all deps for mock backend)
|
|
RUN npm install
|
|
|
|
# Copy application code
|
|
COPY neode-ui/ ./
|
|
|
|
# Sibling assets the mock backend reads relative to /app (../docker, ../demo):
|
|
# the Bitcoin UI mock shell and any curated cloud files dropped into demo/files.
|
|
COPY docker/bitcoin-ui /docker/bitcoin-ui
|
|
COPY docker/electrs-ui /docker/electrs-ui
|
|
COPY demo/files /demo/files
|
|
|
|
# Expose port
|
|
EXPOSE 5959
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=15s --retries=5 --start-period=180s \
|
|
CMD wget --quiet --tries=1 --spider http://localhost:5959/health || exit 1
|
|
|
|
# Start the mock backend with error handling
|
|
CMD ["sh", "-c", "node mock-backend.js 2>&1 || (echo 'ERROR: Backend failed to start'; cat /app/package.json; ls -la /app; sleep infinity)"]
|