Elixir Phoenix app deploy without priv/static/images

I deployed an application with images inpriv/static/images, but apparently they weren’t included in the release.

Is there a reason why? Is there an approved method for including a small set of images in a deployment?

Thank you!

That’s odd. Do you have the following line or the equivalent in your dockerfile

COPY priv priv

I actually stumbled upon the answer; the files were included as part of the release. I was just looking in the wrong location.

I ended up having to go up a directory and found them in the current release.

Thank you for responding! :bowing_man: