mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-20 17:43:24 +00:00
5 lines
138 B
Docker
5 lines
138 B
Docker
FROM node:22-alpine
|
|
WORKDIR /app
|
|
COPY ./packages/gitbook-v2/.open-next/server-functions/default /app
|
|
EXPOSE 3000
|
|
CMD ["node", "index.mjs"] |