I have an expo app that I try to run on a docker container (Don’t ask me why). This is only about running the web version. Locally it works as expected but running it on a docker container, I get some errors like this:
For my custom font as well as for all the expo icons that I use (font awesome, ant design, …).
My Dockerfile looks like this:
FROM node:18.16.1
RUN mkdir /connect-app
WORKDIR /connect-app
COPY . .
RUN yarn
EXPOSE 8081
CMD yarn web
Happy for any suggestion!
Thanks