hf-repo-info / Dockerfile
hahunavth's picture
add expose to dockerfile
2503901
raw
history blame
No virus
845 Bytes
FROM lucone83/streamlit-nginx:python3.9
COPY ./ ./
COPY ./pages ./pages
# # using venv
RUN python3 -m venv /home/streamlitapp/venv
# RUN . /home/streamlitapp/venv/bin/activate
ENV VIRTUAL_ENV /home/streamlitapp/venv # activating environment
ENV PATH /home/streamlitapp/venv/bin:$PATH # activating environment
RUN /usr/local/bin/python -m pip install --upgrade pip
RUN pip install -r requirements.txt
RUN pip install --upgrade streamlit
# ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
COPY --chown=streamlitapp ./nginx.conf /home/streamlitapp/.nginx/nginx.conf
EXPOSE 8080
CMD [ "streamlit", "run", "home.py"]
# CMD /bin/bash -c "source /home/streamlitapp/venv/bin/activate && streamlit run home.py"
# CMD ["/bin/bash", "-c", "source /home/streamlitapp/venv/bin/activate && streamlit run home.py"]