Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
15 changes: 9 additions & 6 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
REPO=uptrend
IMAGE=base-elixir
VERSION=1.4.0
VERSION=1.5.0
4 changes: 2 additions & 2 deletions dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down