diff --git a/Dockerfile b/Dockerfile index 962b318..33dc7b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.8.13-slim-buster WORKDIR /app COPY requirements.txt ./requirements.txt -RUN pip install -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8501 COPY . /app ENTRYPOINT ["streamlit", "run", "stock_viz.py", "--server.port=8501"] \ No newline at end of file