diff --git a/Dockerfile b/Dockerfile index fc41397..174f3db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ @@ -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" ] \ No newline at end of file