Skip to content

Commit

Permalink
feat: optimised docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jun 16, 2024
1 parent f5a6960 commit 04c0600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ 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"]

CMD ["app.py"]
CMD ["app.py"]

0 comments on commit 04c0600

Please sign in to comment.