Skip to content

Commit f8813bf

Browse files
committed
chore: update Dockerfile to 3.13 and fix github repo user
We moved Kent from my github user space to mozilla-services. This updates some urls to reflect that move. This updates the Dockerfile to use Python 3.13 and drops the patch specification. That way we don't have to maintain this as much.
1 parent e4007a8 commit f8813bf

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.5-slim-bookworm
1+
FROM python:3.13-slim-bookworm
22

33
WORKDIR /app/
44

@@ -11,7 +11,7 @@ RUN groupadd -r kent && useradd --no-log-init -r -g kent kent
1111
# realzies, you probably don't want to do this because Kent could change and
1212
# break all your stuff. Pick a specific commit or tag.
1313
RUN pip install -U 'pip>=8' && \
14-
pip install --no-cache-dir 'https://github.com/willkg/kent/archive/refs/heads/main.zip'
14+
pip install --no-cache-dir 'https://github.com/mozilla-services/kent/archive/refs/heads/main.zip'
1515

1616
USER kent
1717

README.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Running in a Docker container
4646

4747
I'm using something like this::
4848

49-
FROM python:3.11.5-slim-bookworm
49+
FROM python:3.13-slim-bookworm
5050

5151
WORKDIR /app/
5252

@@ -55,9 +55,6 @@ I'm using something like this::
5555

5656
RUN groupadd -r kent && useradd --no-log-init -r -g kent kent
5757

58-
# NOTE(willkg): This installs Kent from main tip. If you're using Kent for
59-
# realzies, you probably don't want to do this because Kent could change and
60-
# break all your stuff. Pick a specific commit or tag.
6158
RUN pip install -U 'pip>=8' && \
6259
pip install --no-cache-dir 'kent==<VERSION>'
6360

0 commit comments

Comments
 (0)