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 \