We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2441b commit 09875b1Copy full SHA for 09875b1
Dockerfile
@@ -6,6 +6,7 @@ WORKDIR /app
6
7
# Copy the local requirements.txt file to the container at /app
8
COPY requirements.txt /app/
9
+RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
10
11
# Install the dependencies from requirements.txt
12
RUN pip3 install --no-cache-dir -r requirements.txt
@@ -16,5 +17,5 @@ COPY . /app/
16
17
# Install the Python package (assuming it contains a setup.py file)
18
RUN pip3 install .
19
-# Set the entrypoint to hawk_scanner
20
-ENTRYPOINT ["hawk_scanner"]
+# Run hawk_Scanner from python3 main.py
21
+ENTRYPOINT ["python3", "main.py"]
0 commit comments