-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hanfei Shen
committed
Feb 23, 2021
1 parent
fdd7721
commit 441978e
Showing
18 changed files
with
91 additions
and
1,017 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 |
---|---|---|
|
@@ -4,10 +4,9 @@ ENV/ | |
*.egg-info | ||
.coverage | ||
.pytest_cache | ||
|
||
# nix stuff | ||
result | ||
result-* | ||
/MANIFEST | ||
/build/ | ||
/dist/ | ||
|
||
# Editor | ||
*.sw[po] |
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 @@ | ||
FROM python:3.9-slim | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
git-core \ | ||
&& \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /src | ||
|
||
ADD requirements_frozen.txt ./ | ||
RUN pip install -r ./requirements_frozen.txt | ||
|
||
ADD version ./ | ||
ADD setup.py ./ | ||
ADD marge.app ./ | ||
ADD marge/ ./marge/ | ||
RUN python ./setup.py install | ||
|
||
ENTRYPOINT ["marge.app"] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.