diff --git a/base/Dockerfile b/base/Dockerfile index 1290680..315955c 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -1,6 +1,6 @@ -FROM hexpm/elixir:1.10.1-erlang-22.2.6-alpine-3.11.3 +FROM hexpm/elixir:1.10.3-erlang-23.3.4-alpine-3.13.3 -ENV REFRESHED_AT=2020-02-11 +ENV REFRESHED_AT=2020-05-25 LABEL maintainer="brandon@uptrend.tech" diff --git a/ci/Dockerfile b/ci/Dockerfile index 511f237..7759470 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,6 +1,6 @@ -FROM uptrend/base-elixir:dev-1.4.0 +FROM uptrend/base-elixir:dev-1.5.0 -ENV REFRESHED_AT=2020-03-19 +ENV REFRESHED_AT=2020-05-25 LABEL maintainer="brandon@uptrend.tech" @@ -17,10 +17,13 @@ RUN \ postgresql-client \ jq \ python3 \ - && \ - pip3 install awscli \ - && \ - rm -rf /var/cache/apk/* + py3-pip \ + && pip3 install --upgrade pip \ + && pip3 install --no-cache-dir \ + awscli \ + && rm -rf /var/cache/apk/* + +RUN aws --version # Just to make sure its installed alright # These are set so we use the correct ~/.ssh folder when cloning the repo USER appuser diff --git a/config.mk b/config.mk index ed47ac1..450bc24 100644 --- a/config.mk +++ b/config.mk @@ -1,3 +1,3 @@ REPO=uptrend IMAGE=base-elixir -VERSION=1.4.0 +VERSION=1.5.0 diff --git a/dev/Dockerfile b/dev/Dockerfile index 0f73b31..a20cc08 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -1,6 +1,6 @@ -FROM uptrend/base-elixir:1.4.0 +FROM uptrend/base-elixir:1.5.0 -ENV REFRESHED_AT=2020-03-19 +ENV REFRESHED_AT=2020-05-25 LABEL maintainer="brandon@uptrend.tech"