This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
.env
|
||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
+2
-2
@@ -1,2 +1,2 @@
|
|||||||
VITE_SEARCH_RELAYS=wss://relay.nostr.band,wss://nostr.wine
|
VITE_SEARCH_RELAYS=wss://relay.ditto.pub,wss://antiprimal.net,wss://relay.vertexlab.io
|
||||||
VITE_INDEXER_RELAYS=wss://purplepag.es
|
VITE_INDEXER_RELAYS=wss://purplepag.es,wss://relay.damus.io,wss://indexer.coracle.social
|
||||||
|
|||||||
+12
-14
@@ -1,28 +1,26 @@
|
|||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
# ---- Build stage: compile the Vite/SolidJS app to static files ----
|
# Single stage: the Vite/SolidJS app is built at *container start* rather than at
|
||||||
FROM node:24-alpine AS build
|
# image build, so VITE_* env vars passed to `docker run` are inlined into the bundle.
|
||||||
|
FROM node:24-alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# pnpm ships with Node via corepack; pin to the version that produced pnpm-lock.yaml.
|
# pnpm ships with Node via corepack; pin to the version that produced pnpm-lock.yaml.
|
||||||
RUN corepack enable && corepack prepare pnpm@10.33.0 --activate
|
RUN corepack enable && corepack prepare pnpm@10.33.0 --activate
|
||||||
|
|
||||||
|
# `serve` (what `npx serve` runs) — installed now so the image is self-contained.
|
||||||
|
RUN npm install -g serve@14
|
||||||
|
|
||||||
# Install deps first so this layer is cached unless the manifest/lockfile change.
|
# Install deps first so this layer is cached unless the manifest/lockfile change.
|
||||||
|
# devDependencies are kept because the build runs at container start.
|
||||||
COPY package.json pnpm-lock.yaml ./
|
COPY package.json pnpm-lock.yaml ./
|
||||||
RUN pnpm install --frozen-lockfile
|
RUN pnpm install --frozen-lockfile
|
||||||
|
|
||||||
# Build (`tsc && vite build` → /app/dist). devDependencies are needed here.
|
# App source. The build itself is deferred to the CMD below.
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN pnpm build
|
|
||||||
|
|
||||||
# ---- Serve stage: static files via `serve` ----
|
|
||||||
FROM node:24-alpine AS serve
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# `serve` (what `npx serve` runs) — installed at build time so the image is self-contained.
|
|
||||||
RUN npm install -g serve@14
|
|
||||||
|
|
||||||
COPY --from=build /app/dist ./dist
|
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD ["serve", "-s", "dist", "-l", "3000"]
|
|
||||||
|
# Build (`tsc && vite build` → /app/dist) at runtime so VITE_* vars from the
|
||||||
|
# environment configure the app, then serve the static output.
|
||||||
|
CMD pnpm build && serve -s dist -l 3000
|
||||||
|
|||||||
Reference in New Issue
Block a user