Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit d1153a3

Browse files
committedJun 13, 2023
Use cimg/python:3.9.16-node, python:3.9.16-alpine3.16
1 parent 22ada5d commit d1153a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ aliases:
1919
jobs:
2020
test_py_max: &test_template
2121
docker:
22-
- image: cimg/python:3.9-node
22+
- image: cimg/python:3.9.16-node
2323
resource_class: large
2424
steps:
2525
- checkout
@@ -56,7 +56,7 @@ jobs:
5656

5757
package_build_and_publish:
5858
docker:
59-
- image: cimg/python:3.9-node # need npm to publish docs
59+
- image: cimg/python:3.9.16-node # need npm to publish docs
6060
resource_class: medium
6161
steps:
6262
- checkout

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9.13-alpine3.16 as builder
1+
FROM python:3.9.16-alpine3.16 as builder
22

33
COPY . .
44

@@ -14,7 +14,7 @@ RUN poetry build -f wheel
1414
RUN poetry export -f requirements.txt --without-hashes --with vm > requirements.txt
1515
RUN pip3 wheel --no-cache-dir --no-deps --wheel-dir /wheels -r requirements.txt
1616

17-
FROM python:3.9.13-alpine3.16
17+
FROM python:3.9.16-alpine3.16
1818

1919
RUN apk add --no-cache libgmpxx
2020

‎scripts/install_dev_tools.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
echo "npm: $(npm --version)"
6-
echo "npm: $(node --version)"
6+
echo "node: $(node --version)"
77
echo "pip: $(pip --version)"
88
echo "pip3: $(pip3 --version)"
99
echo "python: $(python --version)"

0 commit comments

Comments
 (0)
This repository has been archived.