# Set work dir WORKDIR"/app/streamlit_app" # Install python packages # RUN pip install -r /app/streamlit_app/requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ # query_helper and fc_auto is a package I developed, that is used as a Git submodule # when i pull all code to local (include this docker file), these submodules also will download to local RUN pip install -r /app/streamlit_app/requirements.txt \ && pip install -e query_helper \ && pip install -e fc_auto
# Expose port EXPOSE80 CMD ["streamlit", "run", "main.py"]