Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 18-implement-textgridlockmanager
  • 5-initial-setup-integration-junit-tests-for-tgapi
  • main
  • 1.0.0
  • 1.0.1
  • 1.0.2
  • 1.1.0
  • 1.1.1
  • 1.1.2
  • 1.1.3
  • 1.2.0
  • 1.2.1
  • 1.2.2
  • 1.2.3
  • 1.2.4
  • 1.2.5
  • 1.3.0
  • 1.3.1
  • 1.4.0
  • 1.4.1
  • 1.4.2
21 results

Target

Select target project
No results found
Select Git revision
  • 18-implement-textgridlockmanager
  • 5-initial-setup-integration-junit-tests-for-tgapi
  • main
  • 1.0.0
  • 1.0.1
  • 1.0.2
  • 1.1.0
  • 1.1.1
  • 1.1.2
  • 1.1.3
  • 1.2.0
  • 1.2.1
  • 1.2.2
  • 1.2.3
  • 1.2.4
  • 1.2.5
  • 1.3.0
  • 1.3.1
  • 1.4.0
  • 1.4.1
  • 1.4.2
21 results
Show changes

Commits on Source 3

3 files
+ 13
5
Compare changes
  • Side-by-side
  • Inline

Files

+7 −0
Original line number Diff line number Diff line
## [1.2.3](https://gitlab.gwdg.de/dariah-de/textgridrep/repdav/compare/1.2.2...1.2.3) (2023-04-20)


### Bug Fixes

* **build:** fix k8s compatibility issue and update dependencies ([07d342d](https://gitlab.gwdg.de/dariah-de/textgridrep/repdav/commit/07d342d0935ea9730578b5f100e57a150bdc71a9)), closes [#44](https://gitlab.gwdg.de/dariah-de/textgridrep/repdav/issues/44)

## [1.2.2](https://gitlab.gwdg.de/dariah-de/textgridrep/repdav/compare/1.2.1...1.2.2) (2023-01-13)


+3 −2
Original line number Diff line number Diff line
@@ -29,10 +29,11 @@ COPY --from=builder /usr/local/lib/python3.8/site-packages/PyICU-2.8.1.dist-info

# icu-dev package is nevertheless needed by the python library
# hadolint ignore=DL3018
RUN adduser -D repdav \
RUN adduser -D repdav -u 1000 \
    && apk add --no-cache icu-dev

USER repdav
# use a "numeric" user for k8s compatibility
USER 1000

COPY --chown=repdav requirements.txt /
RUN pip install \