-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5098af7
commit 0fda18e
Showing
6 changed files
with
112 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Use the official Python image as the base image | ||
FROM python:3 | ||
|
||
# Set the working directory in the container | ||
WORKDIR /app | ||
|
||
# Copy the local requirements.txt file to the container at /app | ||
COPY requirements.txt /app/ | ||
|
||
# Install the dependencies from requirements.txt | ||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
|
||
# Copy the local code to the container at /app | ||
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,5 @@ pydrive2 | |
appdirs | ||
tqdm | ||
funcy | ||
fsspec | ||
fsspec | ||
opencv-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION = "0.3.6" | ||
VERSION = "0.3.7" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
|