Skip to content
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

feat: add created and updated STAC datetimes TDE-1299 (WIP) #1177

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ disable =
missing-module-docstring,
missing-function-docstring,
broad-exception-raised,

too-many-positional-arguments
[FORMAT]
max-line-length=127
[MISCELLANEOUS]
Expand All @@ -18,3 +18,4 @@ ignore-docstrings=yes
ignore-imports=yes
[DESIGN]
max-args = 8

5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ ARG DEBIAN_FRONTEND=noninteractive

ENV TZ=Etc/UTC

RUN apt-get update
# Install pipx and build dependencies
RUN apt-get install --assume-yes gcc libgeos-dev pipx python3-dev
RUN apt-get update && apt-get install --assume-yes --fix-missing gcc libgeos-dev pipx python3-dev
# Install Poetry with the bundle plugin
RUN pipx install poetry
RUN pipx inject poetry poetry-plugin-bundle
Expand All @@ -31,6 +30,8 @@ ENV GIT_VERSION=$GIT_VERSION

ENV TZ=Etc/UTC

RUN apt-get update && apt-get install --assume-yes --fix-missing git

# Copy just the bundle from the first stage
COPY --from=builder /venv /venv

Expand Down
Loading