From ac432fabcccf9e78aa7769dd6ebe0d51887b513d Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Sun, 15 Oct 2023 01:19:12 +0200 Subject: [PATCH] Keep in 3.11 --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7e0e1ee..dc8f0aa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ platform: steps: - name: build - image: python:alpine + image: python:3.11-alpine commands: - pip install --no-cache-dir -r requirements.txt - pip install . @@ -35,7 +35,7 @@ platform: steps: - name: build - image: python:alpine + image: python:3.11-alpine commands: - pip install --no-cache-dir -r requirements.txt - pip install . diff --git a/Dockerfile b/Dockerfile index 44bb745..4fb3fc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:3.11-alpine WORKDIR /usr/src/app