Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [UNRELEASED]

* changed container images to use non-root `user`

## [v0.9.8]

### Fixed
- Allow array as q parameter for full text search

Expand Down
5 changes: 5 additions & 0 deletions docker/pypgstac/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,8 @@ COPY src/pypgstac /opt/src/pypgstac
COPY src/pgstac /opt/src/pgstac
WORKDIR /opt/src/pypgstac
RUN uv pip install --system -e . && rm -rf /usr/local/cargo/registry

RUN addgroup --gid 1000 user && \
adduser --uid 1000 --gid 1000 --disabled-password --gecos "" --home /home/user user && \
chown -R user:user /opt/src/pypgstac /opt/src/pgstac
USER user
Loading