From 2f8cbaa45f46408e51f45079c105d154cc4e0449 Mon Sep 17 00:00:00 2001 From: Denys Zhdanov Date: Thu, 7 Oct 2021 11:24:42 +0200 Subject: [PATCH] Alpine 3.14.2, Django 2.2.24, gunicorn 20.1.0 --- Dockerfile | 6 +++--- build.sh | 2 +- build_pypy.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8f3b88..d08c8f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASEIMAGE=alpine:3.13.5 +ARG BASEIMAGE=alpine:3.14.2 FROM $BASEIMAGE as base LABEL maintainer="Denys Zhdanov " @@ -65,10 +65,10 @@ RUN true \ && . /opt/graphite/bin/activate \ && pip install \ cairocffi==1.1.0 \ - django==2.2.20 \ + django==2.2.24 \ django-statsd-mozilla \ fadvise \ - gunicorn==20.0.4 \ + gunicorn==20.1.0 \ eventlet>=0.24.1 \ gevent>=1.4 \ msgpack==0.6.2 \ diff --git a/build.sh b/build.sh index 7a27ec2..c4e67b4 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -VERSION=1.1.8-1 +VERSION=1.1.8-2 docker build . --build-arg python_binary=python3 --no-cache --tag graphiteapp/graphite-statsd:$VERSION \ No newline at end of file diff --git a/build_pypy.sh b/build_pypy.sh index c6308a3..def6483 100755 --- a/build_pypy.sh +++ b/build_pypy.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION=1.1.8-1 +VERSION=1.1.8-2 IMAGE=jamiehewland/alpine-pypy:3.6-7.3-alpine3.11 docker build . \ --build-arg BASEIMAGE=${IMAGE} --build-arg python_binary=/usr/local/bin/pypy3 \