Skip to content

Commit 2b29f19

Browse files
author
gptkong
committed
add radix-ui
1 parent a388ab8 commit 2b29f19

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

radix-ui-docs/Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM node:22-alpine
2+
3+
RUN apk add --no-cache git
4+
5+
WORKDIR /app
6+
7+
RUN git clone https://github.com/radix-ui/website.git
8+
9+
WORKDIR /app/website
10+
11+
RUN npm install -g pnpm
12+
13+
RUN pnpm install
14+
15+
RUN pnpm run build
16+
17+
EXPOSE 3000
18+
19+
CMD ["pnpm", "run", "start"]

0 commit comments

Comments
 (0)