Ubuntu – Yesod fails to run on docker
I'm trying to build yesod according to the docs on docker: # Dockerfile FROM ubuntu:22.04 RUN apt-get update RUN apt-get install curl -y RUN curl -sSL https://get.haskellstack.org/ | sh RUN stack new my-project yesodweb/sqlite RUN cd my-project && stack install…