-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ARM64 Docker Image Support (#56)
* Add Docker build commands for manually building amd64 and / or arm64 * Update GitHub actions to build docker images automatically for amd64 and arm64 * Update default configuration with new features * Update README.md
- Loading branch information
Showing
6 changed files
with
76 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,39 @@ | ||
{ | ||
"name": "start-page", | ||
"version": "2.3.4", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"start": "next start", | ||
"build": "next build", | ||
"export": "next export", | ||
"lint": "next lint", | ||
"format": "prettier . --write" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.16", | ||
"eslint": "8.56.0", | ||
"eslint-config-next": "14.0.4", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.2", | ||
"postcss": "^8.4.32", | ||
"prettier": "^3.1.1", | ||
"tailwindcss": "^3.4.0" | ||
}, | ||
"dependencies": { | ||
"@fontsource/fira-code": "^5.0.16", | ||
"@iconify/react": "^4.1.1", | ||
"ace-builds": "^1.32.3", | ||
"moment": "^2.30.1", | ||
"next": "14.0.4", | ||
"one-theme-ace": "^0.5.0", | ||
"react": "18.2.0", | ||
"react-ace": "^10.1.0", | ||
"react-device-detect": "^2.2.3", | ||
"react-dom": "18.2.0", | ||
"react-error-boundary": "^4.0.12" | ||
} | ||
} | ||
"name": "start-page", | ||
"version": "3.0.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"start": "next start", | ||
"lint": "next lint", | ||
"format": "prettier . --write", | ||
"export": "next export", | ||
"build": "next build", | ||
"docker:build:amd64": "docker buildx build --load --platform linux/amd64 -t excalith/start-page:latest .", | ||
"docker:build:arm64": "docker buildx build --load --platform linux/arm64 -t excalith/start-page:latest .", | ||
"docker:run": "docker run --name start-page --restart=always -p 8080:3000 -d excalith/start-page" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.16", | ||
"eslint": "8.56.0", | ||
"eslint-config-next": "14.0.4", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.2", | ||
"postcss": "^8.4.32", | ||
"prettier": "^3.1.1", | ||
"tailwindcss": "^3.4.0" | ||
}, | ||
"dependencies": { | ||
"@fontsource/fira-code": "^5.0.16", | ||
"@iconify/react": "^4.1.1", | ||
"ace-builds": "^1.32.3", | ||
"moment": "^2.30.1", | ||
"next": "14.0.4", | ||
"one-theme-ace": "^0.5.0", | ||
"react": "18.2.0", | ||
"react-ace": "^10.1.0", | ||
"react-device-detect": "^2.2.3", | ||
"react-dom": "18.2.0", | ||
"react-error-boundary": "^4.0.12" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3c2d7e5
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.
Successfully deployed to the following URLs:
start-page – ./
start-page-excalith.vercel.app
excalith-start-page.vercel.app
start-page-git-main-excalith.vercel.app