-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from rsteube/xonsh
added xonsh
- Loading branch information
Showing
9 changed files
with
633 additions
and
6 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,19 @@ | ||
FROM golang | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y python3-pip | ||
|
||
RUN pip3 install --no-cache-dir --disable-pip-version-check xonsh \ | ||
&& ln -s $(which xonsh) /usr/bin/xonsh | ||
|
||
|
||
RUN mkdir -p ~/.config/xonsh \ | ||
&& echo "\n\ | ||
\$PROMPT='carapace '\n\ | ||
exec(\$(example _carapace xonsh))" \ | ||
> ~/.config/xonsh/rc.xsh | ||
|
||
RUN ln -s /carapace/example/example /usr/local/bin/example | ||
|
||
ENTRYPOINT [ "xonsh" ] | ||
|
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
Oops, something went wrong.