Skip to content
Open
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 Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ RUN mix setup && mix release

# Compressor stage for compressing the bundled erlang runtime
# You may call it premature optimization, I call it "a few MB less" :P
FROM alpine:3.17 as compressor
FROM alpine:3.21.2 as compressor

COPY --from=builder /app/_build/prod/rel/clei /app

RUN apk add upx && \
upx --lzma --best /app/erts-*/bin/* || true

# Final destination image
FROM alpine:3.17
FROM alpine:3.21.2

LABEL maintainer="Nick Fischer <nick.korotkin@outlook.com>"

Expand Down