Skip to content

Commit

Permalink
Fixed bugs in grdrive_workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitcoder committed Dec 7, 2023
1 parent ce2441b commit 09875b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ WORKDIR /app

# Copy the local requirements.txt file to the container at /app
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
Expand All @@ -16,5 +17,5 @@ COPY . /app/
# Install the Python package (assuming it contains a setup.py file)
RUN pip3 install .

# Set the entrypoint to hawk_scanner
ENTRYPOINT ["hawk_scanner"]
# Run hawk_Scanner from python3 main.py
ENTRYPOINT ["python3", "main.py"]

0 comments on commit 09875b1

Please sign in to comment.