fast failover

This commit is contained in:
2026-02-24 13:43:56 -07:00
parent 8bb086eac9
commit 58ee1db696
9 changed files with 375 additions and 92 deletions

20
client/dev.Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM node:20-alpine
RUN apk add --no-cache bash
WORKDIR /app
RUN npm install -g pnpm
ENV USER="node"
RUN addgroup -g 1000 $USER && \
adduser -D -u 1000 -G $USER $USER || true
RUN chown -R node:node /app
USER node
EXPOSE 5173
CMD ["pnpm", "dev", "--host"]