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