First deploy failing on docker image

This is an entirely new blank Phoenix application aside from Credo and Dialyxir being installed as dependencies and I’m receiving the following error on initial deploy:

==> Creating build context
--> Creating build context done
==> Building image with Docker
--> docker host: 20.10.12 linux x86_64
Sending build context to Docker daemon  81.16kB
[+] Building 1.3s (4/4) FINISHED                                            
 => CACHED [internal] load remote build context                        0.0s
 => CACHED copy /context /                                             0.0s
 => [internal] load metadata for docker.io/library/debian:bullseye-20  0.7s
 => ERROR [internal] load metadata for docker.io/hexpm/elixir:1.13.4-  1.3s
------
 > [internal] load metadata for docker.io/hexpm/elixir:1.13.4-erlang-25.0-debian-bullseye-20220801-slim:
------
Error failed to fetch an image or build from source: error building: failed to solve with frontend dockerfile.v0: failed to create LLB definition: docker.io/hexpm/elixir:1.13.4-erlang-25.0-debian-bullseye-20220801-slim: not found
1 Like

It seems unhappy loading that tag from docker.io.

I’m not sure an image with that tag exists … :thinking: Check:

https://hub.docker.com/r/hexpm/elixir/tags?page=1&name=1.13.4-erlang-25.0-debian

(that link preview may not work but that’s a search for tags prefixed with 1.13.4-erlang-25.0-debian)

In which case that will need swapping in the Dockerfile.

2 Likes

That seems to have done the thing. Thanks Greg <3

1 Like

How would we file a bug report?