From 920988ac747785c6c51d6e8f298ecbf09cfb1e18 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sat, 3 Oct 2020 21:48:07 +0200 Subject: [PATCH] Dockerfile: pull gunicorn from pip alpine's package might not be that much up-to-date --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37e012b..6e43a21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest -RUN apk add --no-cache python3 py3-lxml py3-gunicorn py3-pip py3-wheel git +RUN apk add --no-cache python3 py3-lxml py3-pip py3-wheel git ADD . /app RUN pip3 install /app