diff --git a/.circleci/config.yml b/.circleci/config.yml index 3d1dfca9..6a7ff3d7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ executors: # here we can define an executor that will be shared across different jobs python-executor: docker: - - image: python:3.7-slim-buster@sha256:fecbb1a9695d25c974906263c64ffba6548ce14a169ed36be58331659383c25e + - image: python:3.10-slim-buster@sha256:1678c209d02e5c0b29a2bf14cbc9d676264540a5caa4ef00f47174e71131239f environment: POETRY_CACHE: /work/.cache/poetry PIP_CACHE_DIR: /work/.cache/pip diff --git a/Dockerfile b/Dockerfile index e3dbab04..82e9fa52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7-slim-buster@sha256:2053d75b458798a56bfa84b0fb58e54938fcb3db236b26dbc0f5748d38dbba58 +FROM python:3.10-slim-buster@sha256:1678c209d02e5c0b29a2bf14cbc9d676264540a5caa4ef00f47174e71131239f RUN apt update && apt install curl make git libopenblas-base -y RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python ENV SHELL /bin/bash -l