Skip to content

Commit

Permalink
fixed issue with work_dir
Browse files Browse the repository at this point in the history
  • Loading branch information
naseemap47 committed Sep 22, 2024
1 parent 6737897 commit 0e94aba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
COPY . /App
COPY . /home
RUN apt-get update && \
apt-get install -y \
python3 \
Expand All @@ -9,7 +9,6 @@ ffmpeg \
libsm6 \
libxext6 \
git
WORKDIR /App
RUN cd streamlit-yolo
WORKDIR /home/streamlit-yolo
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]

0 comments on commit 0e94aba

Please sign in to comment.