Skip to content
Closed
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
6 changes: 3 additions & 3 deletions 3.14/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ LABEL maintainer="CircleCI Execution Team <eng-execution@circleci.com>"

ENV PYENV_ROOT=/home/circleci/.pyenv \
PATH=/home/circleci/.pyenv/shims:/home/circleci/.pyenv/bin:/home/circleci/.poetry/bin:$PATH \
PYTHON_VERSION=3.14.4 \
PIPENV_DEFAULT_PYTHON_VERSION=3.14.4
PYTHON_VERSION=3.14.5rc1 \
PIPENV_DEFAULT_PYTHON_VERSION=3.14.5rc1

RUN sudo apt-get update && sudo apt-get install -y \
build-essential \
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN sudo apt-get update && sudo apt-get install -y \
curl -sSL "https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer" | bash && \
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN env PYTHON_CONFIGURE_OPTS="--enable-shared --enable-optimizations" pyenv install 3.14.4 && pyenv global 3.14.4
RUN env PYTHON_CONFIGURE_OPTS="--enable-shared --enable-optimizations" pyenv install 3.14.5rc1 && pyenv global 3.14.5rc1

RUN python --version && \
pip --version && \
Expand Down
2 changes: 1 addition & 1 deletion 3.14/browsers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/python:3.14.4-node
FROM cimg/python:3.14.5rc1-node

LABEL maintainer="CircleCI Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion 3.14/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/python:3.14.4
FROM cimg/python:3.14.5rc1

LABEL maintainer="Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion GEN-CHECK
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GEN_CHECK=(3.14.4 3.13.13)
GEN_CHECK=(3.14.5rc1)
9 changes: 3 additions & 6 deletions build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ set -eo pipefail

docker context create cimg
docker buildx create --use cimg
docker buildx build --platform=linux/amd64 --file 3.14/Dockerfile -t cimg/python:3.14.4 -t cimg/python:3.14 --push .
docker buildx build --platform=linux/amd64 --file 3.14/node/Dockerfile -t cimg/python:3.14.4-node -t cimg/python:3.14-node --push .
docker buildx build --platform=linux/amd64 --file 3.14/browsers/Dockerfile -t cimg/python:3.14.4-browsers -t cimg/python:3.14-browsers --push .
docker buildx build --platform=linux/amd64 --file 3.13/Dockerfile -t cimg/python:3.13.13 -t cimg/python:3.13 --push .
docker buildx build --platform=linux/amd64 --file 3.13/node/Dockerfile -t cimg/python:3.13.13-node -t cimg/python:3.13-node --push .
docker buildx build --platform=linux/amd64 --file 3.13/browsers/Dockerfile -t cimg/python:3.13.13-browsers -t cimg/python:3.13-browsers --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 3.14/Dockerfile -t cimg/python:3.14.5rc1 -t cimg/python:3.14 --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 3.14/node/Dockerfile -t cimg/python:3.14.5rc1-node -t cimg/python:3.14-node --push .
docker buildx build --platform=linux/amd64 --file 3.14/browsers/Dockerfile -t cimg/python:3.14.5rc1-browsers -t cimg/python:3.14-browsers --push .