File size: 584 Bytes
1228ed9 04435e8 ca69e65 1228ed9 ca69e65 1228ed9 ca69e65 1228ed9 04435e8 ca69e65 04435e8 ca69e65 0232d80 ca69e65 adc866e c550c2a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
FROM bitnami/pytorch
RUN mkdir --mode 600 /my_streamlit_app
WORKDIR /my_stramlit_app
COPY ./requirements.txt /my_streamlit_app/requirements.txt
RUN pip install --no-cache-dir -r /my_streamlit_app/requirements.txt
RUN mkdir --mode 600 "/my_streamlit_app/.cache/"
RUN mkdir --mode 600 "/my_streamlit_app/.cache/huggingface/"
ENV HUGGINGFACE_HUB_CACHE="/my_streamlit_app/.cache/huggingface"
RUN mkdir --mode 600 "/my_streamlit_app/.cache/transformers/"
ENV TRANSFORMERS_CACHE="/my_streamlit_app/.cache/transformers"
COPY . /my_streamlit_app
CMD ["streamlit", "run", "/app/app.py"]
|