erlang / docker-erlang-otp

the Official Erlang OTP image on Docker Hub
https://hub.docker.com/_/erlang/
Apache License 2.0
183 stars 78 forks source link

update 26 branch debian base image #447

Closed pilou- closed 6 months ago

asabil commented 1 year ago

Would be great if bullseye was still supported under a different tag maybe?

pilou- commented 1 year ago

It would but this is not what was done with the previous update (#379).

asabil commented 1 year ago

Yes, but updates like these are problematic for such scenarios:

FROM erlang:25 as builder

# ... build your release

FROM debian:bullseye-slim

COPY --from=builder ...

The above image will fail at runtime because of incompatible openssl libraries.

If on the other hand we could say FROM erlang:25-bullseye that would save a lot of trouble.