From 2a7a1b83ecb8125927003132c1a333e9f48e5c97 Mon Sep 17 00:00:00 2001 From: pictuga Date: Tue, 28 Dec 2021 13:41:42 +0100 Subject: [PATCH] Use alpine:edge to have up-to-date py packages --- .drone.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index aeedfb3..d1a899d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: test steps: - name: lint - image: alpine + image: alpine:edge commands: - apk add --no-cache python3 py3-lxml py3-setproctitle py3-pip py3-wheel py3-enchant hunspell-en - pip3 install --no-cache-dir .[full] .[dev] diff --git a/Dockerfile b/Dockerfile index 6078c0f..b03f067 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:latest +FROM alpine:edge ADD . /app