File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,12 @@ RUN node --version && npm --version
17
17
18
18
RUN npx --yes create-next-app@latest frontend --js --tailwind --no-eslint --src-dir src --app --no-turbopack --yes && \
19
19
cd frontend && \
20
- npm run build && \
21
- ls -asl /frontend && \
22
- cat /frontend/package.json
20
+ npm install lucide-react axios --force && \
21
+ (echo "\n\n\n" | npx shadcn@latest init --defaults --force --yes) && \
22
+ (echo "\n\n\n" | npx shadcn@latest add --yes --all) && \
23
+ npm run build
24
+
25
+ RUN ls -asl /frontend && \
26
+ cat /frontend/package.json
23
27
24
28
EXPOSE 3000
Original file line number Diff line number Diff line change @@ -17,11 +17,9 @@ RUN node --version && npm --version
17
17
18
18
RUN npx --yes create-next-app@latest frontend --js --tailwind --no-eslint --src-dir src --app --no-turbopack --yes && \
19
19
cd frontend && \
20
- npm install lucide-react --force && \
21
- (echo "\n\n\n" | npx shadcn@latest init --defaults --force --yes) && \
22
- (echo "\n\n\n" | npx shadcn@latest add --yes --all) && \
23
- npm run build && \
24
- ls -asl /frontend && \
20
+ npm run build
21
+
22
+ RUN ls -asl /frontend && \
25
23
cat /frontend/package.json
26
24
27
25
EXPOSE 3000
You can’t perform that action at this time.
0 commit comments