-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken web deploy #1216
Fix broken web deploy #1216
Changes from all commits
64ec3ef
739cf9f
30a3e65
89e8332
1a9c318
8c28197
21939e7
e3a4b92
2aa2ebe
2d59ec9
d74fc8c
583a0a3
f783bb2
4a478a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.idea/ | ||
.git/ | ||
.github/ | ||
.direnv | ||
node_modules/ | ||
.DS_Store | ||
.dockerignore | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
23 | ||
23.6 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
NODE_ENV=development | ||
NODE_OPTIONS="--trace-warnings --inspect --experimental-strip-types --experimental-transform-types --watch-preserve-output" | ||
NODE_OPTIONS="--trace-warnings --inspect --experimental-transform-types --watch-preserve-output" |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
suddenlygiovanni.dev/apps/web/Dockerfile Line 25 in 2d59ec9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 [hadolint] <DL3059> reported by reviewdog 🐶 suddenlygiovanni.dev/apps/web/Dockerfile Line 42 in 2d59ec9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
suddenlygiovanni.dev/apps/web/Dockerfile Line 60 in 2d59ec9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
suddenlygiovanni.dev/apps/web/Dockerfile Line 60 in 2d59ec9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 [hadolint] <DL3059> reported by reviewdog 🐶 suddenlygiovanni.dev/apps/web/Dockerfile Line 68 in 2d59ec9
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ RUN apk add --no-cache jq | |
RUN jq -r .packageManager package.json > pnpm-version.txt | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
|
||
FROM node:current-alpine3.21 AS base | ||
FROM node:23.6-alpine3.21 AS base | ||
|
||
LABEL authors="suddenlyGiovanni" | ||
|
||
|
@@ -84,4 +84,4 @@ USER node | |
|
||
EXPOSE 5173 | ||
|
||
CMD ["node", "--experimental-strip-types", "--experimental-transform-types", "server/server.ts"] | ||
CMD ["node", "--experimental-transform-types", "server/server.ts"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
"description": "suddenlyGiovanni personal website monorepo", | ||
"devDependencies": { | ||
"@biomejs/biome": "nightly", | ||
"@tailwindcss/language-server": "0.14.1", | ||
"eslint": "9.18.0", | ||
"scripty": "2.1.1", | ||
"turbo": "2.3.3", | ||
|
@@ -19,16 +20,12 @@ | |
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0", | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"@react-router/[email protected]>vite": "^6", | ||
"@vitest/[email protected]>vite": "^6" | ||
} | ||
"allowedVersions": {} | ||
}, | ||
"overrides": { | ||
"react": "^19.0.0", | ||
"react-dom": "19.0.0", | ||
"@types/react": "^19.0.0", | ||
"vite": "^6" | ||
"react-dom": "^19.0.0", | ||
"@types/react": "^19.0.0" | ||
} | ||
}, | ||
"private": true, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pin versions in apk add. Instead of
apk add <package>
useapk add <package>=<version>
suddenlygiovanni.dev/apps/web/Dockerfile
Line 8 in 2d59ec9