Skip to content

Commit dae8e7d

Browse files
Yuri ZmytrakovYuri Zmytrakov
authored andcommitted
docs: changelog for redis_max_connections validation
1 parent 8035170 commit dae8e7d

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
### Added
1111

12+
- Added validator for `REDIS_MAX_CONNECTIONS` to handle empty or null-like values ("", "null", None) and return None instead. [#519](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/519)
13+
1214
### Changed
1315

1416
### Fixed

Dockerfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
FROM python:3.13-slim
2+
3+
RUN apt-get update && apt-get install -y \
4+
build-essential \
5+
&& apt-get clean \
6+
&& rm -rf /var/lib/apt/lists/*
7+
8+
WORKDIR /app
9+
10+
COPY README.md .
11+
COPY stac_fastapi/core/pyproject.toml stac_fastapi/core/
12+
COPY stac_fastapi/sfeos_helpers/pyproject.toml stac_fastapi/sfeos_helpers/
13+
COPY stac_fastapi/opensearch/pyproject.toml stac_fastapi/opensearch/
14+
15+
RUN pip install --no-cache-dir --upgrade pip setuptools wheel
16+
17+
COPY stac_fastapi/ stac_fastapi/
18+
19+
RUN pip install --no-cache-dir ./stac_fastapi/core
20+
RUN pip install --no-cache-dir ./stac_fastapi/sfeos_helpers
21+
RUN pip install --no-cache-dir ./stac_fastapi/opensearch[server]
22+
23+
EXPOSE 8080
24+
25+
CMD ["uvicorn", "stac_fastapi.opensearch.app:app", "--host", "0.0.0.0", "--port", "8080"]

0 commit comments

Comments
 (0)