This is an old revision of the document!
Dockerize Plotly Dash (Flask Dash) App
Find an example here - https://gitea.isolo.org/public/StockChartingDash
Install Docker Desktop
Follow instructions on - https://docs.docker.com/desktop/install/windows-install/
Develop Your App
I use VSCode and Python virtual environment.
Create Dockerfile
Example:
FROM python:alpine3.19 WORKDIR /app COPY . /app RUN pip install -U pip && pip install -r requirements.txt EXPOSE 8050 CMD ["python", "./indicators.py"]
Tip: use .gitignore
and .dockerignore
file to exclude files you don't need
Build, Test and Push
Run the following CLI commands in VS Code terminal.
Build
docker build -t georgewayne188/stock_dashboard:latest .
Run, Test
docker container run -d -p 8050:8050 georgewayne188/stock_dashboard:latest
Push to Dockerhub
docker image push georgewayne188/sock_dashboard
Reverse Proxy for Secure Internet Access
By default, you can access the Dash app from http://localhost:8050. To be able to access from internet with https, use Synology reverse proxy.
See https://isolo.org/dokuwiki/knowledge_base/home_it/synology/matomo?s[]=reverse&s[]=proxy#create_reverse_proxy_for_https_access for creating reverse proxy.