forked from aws/sagemaker-distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds jupyter-lsp, python-lsp-server, and notebook to 1.0.0 beta (aws#82)
* Adds jupyter-lsp and notebook to test harness * Reinstates test suites * Revert "Release v0.7.0 (aws#75)" This reverts commit 5234f45. * Revert "Revert "Release v0.7.0 (aws#75)"" This reverts commit b8b8d1a. * Adds python-lsp-server test * Adds python-lsp-server to test harness --------- Co-authored-by: Jason Weill <[email protected]>
- Loading branch information
1 parent
b54d1fc
commit d48052f
Showing
4 changed files
with
27 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ARG COSMOS_IMAGE | ||
FROM $COSMOS_IMAGE | ||
|
||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
|
||
CMD ["python", "-c", "import jupyter_lsp"] |
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,6 @@ | ||
ARG COSMOS_IMAGE | ||
FROM $COSMOS_IMAGE | ||
|
||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
|
||
CMD ["python", "-c", "import notebook"] |
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,7 @@ | ||
ARG COSMOS_IMAGE | ||
FROM $COSMOS_IMAGE | ||
|
||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
|
||
# "Confirm that installation succeeded" by running this - https://github.com/python-lsp/python-lsp-server#installation | ||
CMD ["pylsp", "--help"] |
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