Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 468 Bytes

README.md

File metadata and controls

41 lines (25 loc) · 468 Bytes

Docker példa webalkalmazás

Python/Streamlint alkalmazás

Projekt struktúra:

.
├── .dockerignore
├── Dockerfile
├── requirements.txt
└── app.py

Építés és futtatás

  • Kezdő mappa:
cd Kod4
  • Építés:
docker build --tag python-streamlit-webapp:1.0 .
  • Futtatás:
docker run -d -p 8081:80 python-streamlit-webapp:1.0