Replies: 1 comment 1 reply
-
Not sure how you expect that to work. You're copying the code into the container. This happens only at build time. Using the reloader there is pointless. What you need to do is mounting your code as a volume into the container (and get rid of the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
the issue when i create docker container for the app with dockerfile
ENTRYPOINT [ "python3", "-m", "flask", "run", "--debug", "--host=0.0.0.0"]
everything works fine but when i change anything in the code i don't see anything change if i wanna see the changes
i have to rebuild the container
note: i am using correct volume
and when i exec the container i can see the changes in the file
Environment:
Beta Was this translation helpful? Give feedback.
All reactions