From cc1f669a32fc45ad3c52d3d78e7cdef4ca260d70 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Tue, 8 Dec 2020 17:20:44 +0100 Subject: [PATCH] Let dependabot decide of the python version --- .drone.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 79c1d0d..ba72cb0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ type: docker steps: - name: flake8 - image: python + image: python:slim commands: - pip install flake8 - flake8 pynyaata --ignore=E501 diff --git a/Dockerfile b/Dockerfile index b125274..5ef3348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:slim +FROM python:3.9.1-slim COPY pynyaata /app/pynyaata COPY requirements.txt *.py /app/