f053c1befa
Zero-dependency Node server on the RM Circle pattern. Chain config lives in the volume so the same code runs the Amoy dress rehearsal and mainnet. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
9 lines
140 B
Docker
9 lines
140 B
Docker
FROM node:22-alpine
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN mkdir -p /app/data
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
EXPOSE 3000
|
|
CMD ["node","server.js"]
|