Is it possible to use docker compose watch with an image created by earthfile
So i have this simple code to run. import streamlit as st st.title("hellobored") I create a docker image of this code with a simple earthfile with the command earthly +all VERSION 0.8 streamlit: FROM python:3.11-slim WORKDIR /src/app RUN apt-get update…