KwabenaMufasa's picture
Duplicate from Kwasiasomani/Grocery_Store_Time_Series_Forecasting
87d6a85
raw
history blame
No virus
557 Bytes
FROM python:3.9
WORKDIR /code
# Create a writable directory for the cache
RUN mkdir -p /.cache/huggingface/hub && chmod -R 777 /.cache
# Set the TRANSFORMERS_CACHE environment variable
ENV TRANSFORMERS_CACHE /.cache/huggingface/hub
COPY ./requirements.txt /code/requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
COPY . .
CMD ["streamlit","run","app.py", "--server.address", "0.0.0.0", "--server.port", "7860", "--browser.serverAddress", "kwasiasomani-Docker.hf.space", "--browser.serverAddress","0.0.0.0:7860"]