Skip to content

Commit

Permalink
fix: bump versions in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bklebe committed Jun 6, 2024
1 parent 092af7a commit fc32a88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ELIXIR_VERSION=1.14.5
ARG ERLANG_VERSION=25.3.2.7
ARG ALPINE_VERSION=3.18.4
ARG ELIXIR_VERSION=1.16.3
ARG ERLANG_VERSION=26.2.5
ARG ALPINE_VERSION=3.20.0
FROM hexpm/elixir:$ELIXIR_VERSION-erlang-$ERLANG_VERSION-alpine-$ALPINE_VERSION AS builder

WORKDIR /root
Expand All @@ -27,7 +27,7 @@ RUN mix do compile, release
# Second stage: copies the files from the builder stage
FROM alpine:$ALPINE_VERSION

RUN apk add --update libssl1.1 ncurses-libs bash dumb-init libstdc++ \
RUN apk add --update libcrypto3 ncurses-libs bash dumb-init libstdc++ \
&& apk upgrade \
&& rm -rf /var/cache/apk

Expand Down

0 comments on commit fc32a88

Please sign in to comment.