diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b3283b2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use the official Python image from the Docker Hub +FROM python:3.9-slim + +# Set the working directory in the container +WORKDIR /app + +# Copy the requirements file into the container at /app +COPY requirements.txt . + +# Install any dependencies specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the rest of the application code into the container at /app +COPY . . + +# Run the application +CMD ["python", "./app.py"] \ No newline at end of file diff --git a/yolov8n.pt b/yolov8n.pt deleted file mode 100644 index 0db4ca4..0000000 Binary files a/yolov8n.pt and /dev/null differ