Skip to content

Commit

Permalink
updated clone repo to copy
Browse files Browse the repository at this point in the history
  • Loading branch information
naseemap47 committed Sep 22, 2024
1 parent b0cfa06 commit 6737897
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
COPY . /App
RUN apt-get update && \
apt-get install -y \
python3 \
python3-pip \
ffmpeg \
libsm6 \
libxext6 \
git
RUN git clone https://github.com/naseemap47/streamlit-yolo.git App
apt-get install -y \
python3 \
python3-pip \
ffmpeg \
libsm6 \
libxext6 \
git
WORKDIR /App
RUN cd streamlit-yolo
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]

0 comments on commit 6737897

Please sign in to comment.