Skip to content

Commit

Permalink
Updated docker
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitcoder committed Feb 1, 2024
1 parent 9211876 commit 68d71a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY requirements.txt /app/
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y

# Install the dependencies from requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 install -r requirements.txt

# Copy the local code to the container at /app
COPY . /app/
Expand All @@ -18,4 +18,4 @@ COPY . /app/
RUN pip3 install .

# Run hawk_Scanner from python3 main.py
ENTRYPOINT ["python3", "main.py"]
ENTRYPOINT ["hawk_scanner"]

0 comments on commit 68d71a3

Please sign in to comment.