Skip to content

Commit 78387ad

Browse files
committed
ugh
1 parent 7a7ab48 commit 78387ad

5 files changed

+5
-17
lines changed

images/AngularVanillaDockerFile

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ RUN npm install -g @angular/cli && \
2828
npm install && \
2929
ng build
3030

31-
RUN tree /frontend && \
32-
cat /frontend/package.json
31+
RUN cat /frontend/package.json
3332

3433
EXPOSE 3000

images/NextjsP5DockerFile

+1-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ RUN npx --yes [email protected] frontend --js --tailwind --no-eslint --src-
2121
npm install --save-dev eslint eslint-config-next --force && \
2222
npm run build
2323

24-
RUN tree /frontend
25-
2624
RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/next.config.mjs.example && \
2725
curl -o /frontend/.eslintrc.json https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/.eslintrc.json.example && \
2826
curl -o /frontend/public/sketch.js https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/p5/public/sketch.js && \
@@ -33,7 +31,6 @@ RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/p
3331
curl -o /frontend/src/app/page.js https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/p5/src/app/page.js && \
3432
rm -rf /frontend/public/*.svg
3533

36-
RUN tree /frontend && \
37-
cat /frontend/package.json
34+
RUN cat /frontend/package.json
3835

3936
EXPOSE 3000

images/NextjsPixiDockerFile

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ RUN npx --yes [email protected] frontend --js --tailwind --no-eslint --src-
2222
npm install --save-dev eslint eslint-config-next --force && \
2323
npm run build
2424

25-
RUN tree /frontend
26-
2725
RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/next.config.mjs.example && \
2826
curl -o /frontend/.eslintrc.json https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/.eslintrc.json.example && \
2927
curl -o /frontend/src/app/layout.js https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/pixi/src/app/layout.js && \
@@ -32,7 +30,6 @@ RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/p
3230
curl -o /frontend/src/app/pixi/app.js https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/pixi/src/app/pixi/app.js && \
3331
rm -rf /frontend/public/*.svg
3432

35-
RUN tree /frontend && \
36-
cat /frontend/package.json
33+
RUN cat /frontend/package.json
3734

3835
EXPOSE 3000

images/NextjsShadcnDockerFile

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ RUN apt-get update && \
1616

1717
RUN node --version && npm --version
1818

19-
RUN npx --yes [email protected] frontend -e with-supabase --js --tailwind --no-eslint --src-dir src --app --no-turbopack --yes && \
19+
RUN npx --yes [email protected] frontend --js --tailwind --no-eslint --src-dir src --app --no-turbopack --yes && \
2020
cd frontend && \
2121
npm install lucide-react axios recharts @radix-ui/react-icons tailwind-merge react-hook-form --force && \
2222
npm install --save-dev eslint eslint-config-next --force && \
2323
(echo "\n\n\n" | npx [email protected] init --defaults --force --yes) && \
2424
(echo "\n\n\n" | npx [email protected] add --yes --all) && \
2525
npm run build
2626

27-
RUN tree /frontend
28-
2927
RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/next.config.mjs.example && \
3028
curl -o /frontend/.eslintrc.json https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/.eslintrc.json.example
3129

images/NextjsVanillaDockerFile

+1-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@ RUN npx --yes [email protected] frontend --js --tailwind --no-eslint --src-
2121
npm install --save-dev eslint eslint-config-next --force && \
2222
npm run build
2323

24-
RUN tree /frontend
25-
2624
RUN curl -o /frontend/next.config.mjs https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/next.config.mjs.example && \
2725
curl -o /frontend/.eslintrc.json https://raw.githubusercontent.com/sshh12/prompt-stack/refs/heads/main/images/nextjs/.eslintrc.json.example
2826

29-
RUN tree /frontend && \
30-
cat /frontend/package.json
27+
RUN cat /frontend/package.json
3128

3229
EXPOSE 3000

0 commit comments

Comments
 (0)