-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Spectre to version 0.2.0 Alpha
- Loading branch information
Philippe Sanio
committed
Mar 18, 2024
1 parent
01b8ed5
commit de1740c
Showing
55 changed files
with
5,309 additions
and
1,416 deletions.
There are no files selected for viewing
File renamed without changes.
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,60 @@ | ||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
# Jetbrains | ||
.idea/ | ||
test/ | ||
|
||
# local | ||
_test_luis | ||
_test_luis/* | ||
__pycache__/* | ||
*pyc | ||
|
||
# deploy | ||
deploy_baylor.sh | ||
deployScriptsBaylor.sh | ||
.rsync-ignore | ||
resultadoRsync.txt |
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,33 @@ | ||
FROM python:3.11.4-slim-buster | ||
|
||
# Metadata | ||
LABEL VERSION="0.2.0.alpha" | ||
LABEL NAME="Spectre:${VERSION}" | ||
LABEL AUTHOR="Philippe Sanio" | ||
|
||
|
||
|
||
# Path: /app | ||
WORKDIR /app/Spectre | ||
|
||
# pip install requirements.txt | ||
COPY requirements.txt . | ||
|
||
# pip install | ||
RUN pip install --no-cache-dir --upgrade pip \ | ||
&& pip install --no-cache-dir -r requirements.txt | ||
|
||
RUN pip install -U setuptools wheel build | ||
|
||
# copy Spectre directory | ||
COPY . . | ||
|
||
RUN python -m build | ||
|
||
# Install what ever the dist folder contains and ends with .tar.gz | ||
RUN pip install --no-cache-dir dist/*.tar.gz | ||
RUN pip install --no-cache-dir . | ||
|
||
# Start the application | ||
ENTRYPOINT ["spectre"] | ||
CMD ["Spectre"] |
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.