From 56c201c348e6ae3ca1a621cf50e096beb82b8b2e Mon Sep 17 00:00:00 2001 From: Elias Tazartes <66871571+Eikix@users.noreply.github.com> Date: Tue, 2 Apr 2024 09:12:29 -0300 Subject: [PATCH] fix dockerfile python version (#1060) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Time spent on this PR: ## Pull request type Please check the type of change your PR introduces: - [x] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no api changes) - [ ] Build related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior? Resolves # ## What is the new behavior? - - - - - - This change is [Reviewable](https://reviewable.io/reviews/kkrt-labs/kakarot/1060) --- docker/deployer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/deployer/Dockerfile b/docker/deployer/Dockerfile index e4bf50fe8..7141171bc 100644 --- a/docker/deployer/Dockerfile +++ b/docker/deployer/Dockerfile @@ -5,7 +5,7 @@ ########################################### # Base image used by builder and deployer ########################################### -FROM python:3.9.18-slim-bookworm as base +FROM python:3.10.14-slim-bookworm as base HEALTHCHECK NONE