Skip to content

Instantly share code, notes, and snippets.

@berkorbay
Last active July 29, 2021 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkorbay/29a056f7e0bd128f29cdea930e742f3b to your computer and use it in GitHub Desktop.
Save berkorbay/29a056f7e0bd128f29cdea930e742f3b to your computer and use it in GitHub Desktop.
Minimal streamlit (v0.85) in Python 3.9.6 Dockerfile
FROM python:3.9.6
RUN pip install --no-cache-dir streamlit
EXPOSE 8501
ENTRYPOINT [ "streamlit" ]
CMD ["hello"]
## FOR ANY APPLICATION
ENTRYPOINT [ "streamlit", "run"]
CMD ["my_streamlit_file.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment