Skip to content

Commit

Permalink
Bump worker-base to Python 3.11.4 (#1462)
Browse files Browse the repository at this point in the history
Noticed my Cloud Top is now using Python 3.11.4.

I think there should be a way to get dependabot/rennovate to make these
PRs.
Alternatively, we could change the base image so we don't need to build
python from source.

note: The ci image that runs our tests needs to be manually deployed but
is based on the worker image, so it can only really be rebuilt after
this is merged...
  • Loading branch information
michaelkedar authored Jul 13, 2023
1 parent 24e7244 commit faf30a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/worker-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && apt-get upgrade -y && \
libssl-dev \
software-properties-common

ARG PYTHON_VERSION=3.11.3
ARG PYTHON_VERSION=3.11.4
RUN curl -sS https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz | tar -C /tmp -xzv && \
cd /tmp/Python-${PYTHON_VERSION} && \
./configure --enable-optimizations --with-lto --enable-loadable-sqlite-extensions && \
Expand Down

0 comments on commit faf30a1

Please sign in to comment.