Skip to content

Commit 09875b1

Browse files
committed
Fixed bugs in grdrive_workspace
1 parent ce2441b commit 09875b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ WORKDIR /app
66

77
# Copy the local requirements.txt file to the container at /app
88
COPY requirements.txt /app/
9+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
910

1011
# Install the dependencies from requirements.txt
1112
RUN pip3 install --no-cache-dir -r requirements.txt
@@ -16,5 +17,5 @@ COPY . /app/
1617
# Install the Python package (assuming it contains a setup.py file)
1718
RUN pip3 install .
1819

19-
# Set the entrypoint to hawk_scanner
20-
ENTRYPOINT ["hawk_scanner"]
20+
# Run hawk_Scanner from python3 main.py
21+
ENTRYPOINT ["python3", "main.py"]

0 commit comments

Comments
 (0)