-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add build push docker image image in the publish ci #311
Merged
Merged
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6c0eac5
add build push docker image
mo-dkrz b19aec9
bump version
mo-dkrz b24192e
add test health step in publish, refactored the dockerfiles of es and os
mo-dkrz 710b8f4
furnished readme and changelog
mo-dkrz 795fa87
added default values and removed the unnecessary env vars from docker…
mo-dkrz bd5cddf
add WEB_CONCURRENCY in entrypoint
mo-dkrz c97d6f0
add RUN_LOCAL_OS and RUN_LOCAL_ES option to configure backend in cont…
mo-dkrz 7226fc1
better docs
mo-dkrz 0e70af2
check logs on produced images
mo-dkrz feb24d2
added better logs, and considered all different scenarios
mo-dkrz e8d6fc4
made README well documented
mo-dkrz 15b0d65
added better recognition criteria for es and os
mo-dkrz 4826f19
reflect comment on first method of installation of readme
mo-dkrz 3e67674
minor changes in readme
mo-dkrz 34f36a1
resolve the req change
mo-dkrz a2ee00b
dismantled the backends from dockerfiles and chnaged the REAME
mo-dkrz 12af96a
prepared publish ci action
mo-dkrz 808ee37
added latest version on image links
mo-dkrz f4ab110
removed env var from dockerfiles and minor change in docker-compose
mo-dkrz 10eba9b
added forgotten build stage in docker-compose es and os services
mo-dkrz c033dfb
added docs in README
mo-dkrz 562f7b3
Merge branch 'main' into add-image
jonhealy1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.12-slim | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
gcc \ | ||
curl \ | ||
&& apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY . /app/ | ||
|
||
RUN pip3 install --no-cache-dir -e ./stac_fastapi/core && \ | ||
pip3 install --no-cache-dir ./stac_fastapi/elasticsearch[server] | ||
|
||
USER root | ||
|
||
CMD ["python", "-m", "stac_fastapi.elasticsearch.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM python:3.12-slim | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
gcc \ | ||
curl \ | ||
&& apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY . /app/ | ||
|
||
RUN pip3 install --no-cache-dir -e ./stac_fastapi/core && \ | ||
pip3 install --no-cache-dir ./stac_fastapi/opensearch[server] | ||
|
||
USER root | ||
|
||
CMD ["python", "-m", "stac_fastapi.opensearch.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""library version.""" | ||
__version__ = "3.2.0" | ||
__version__ = "3.2.1" |
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
2 changes: 1 addition & 1 deletion
2
stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/version.py
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,2 +1,2 @@ | ||
"""library version.""" | ||
__version__ = "3.2.0" | ||
__version__ = "3.2.1" |
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,2 +1,2 @@ | ||
"""library version.""" | ||
__version__ = "3.2.0" | ||
__version__ = "3.2.1" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great