-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to make UI working with docker
- Loading branch information
1 parent
fbfd6e9
commit 74a3a2d
Showing
5 changed files
with
94 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
```bash | ||
docker buildx build --platform linux/amd64 \ | ||
-t vizro-ai-ui-for-dashboard:0.0.1 \ | ||
-t vizro-ai-ui-for-dashboard:latest \ | ||
--load \ | ||
. | ||
``` | ||
|
||
(local distribution only) | ||
```bash | ||
docker save vizro-ai-ui-for-dashboard:latest -o image.tar | ||
docker load -i image.tar | ||
``` | ||
|
||
|
||
```bash | ||
docker run -p 7868:7868 -p 8051:8051 vizro-ai-ui-for-dashboard:latest | ||
``` | ||
|
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,4 +1,4 @@ | ||
gunicorn | ||
vizro-ai>=0.2.1 | ||
black | ||
jupyter | ||
jupyter |