Skip to content

Commit

Permalink
Merge pull request #131 from cceh/fix/pyenv
Browse files Browse the repository at this point in the history
Relax Python Version Requirement and Run as UID/GID 1000
  • Loading branch information
lguenth committed Jul 17, 2023
2 parents 5a4caf1 + 801116d commit aa05346
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3.11-alpine3.17
FROM python:3.11-alpine3.18
ADD . /tmp/kosh
RUN pip install /tmp/kosh && find /root /tmp -mindepth 1 -delete
USER nobody
USER 1000:1000
ENTRYPOINT ["kosh"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "kosh"
description = "kosh - APIs for Lexical Data"

version = "0.0.2"
requires-python = ">= 3.11"
requires-python = ">= 3.8"

readme = "README.md"
license = { file = "LICENSE" }
Expand Down

0 comments on commit aa05346

Please sign in to comment.