generated from Tauffer-Consulting/domino_pieces_repository_template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
0 additions
and
4 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 |
---|---|---|
@@ -1,15 +1,11 @@ | ||
# Use the base image | ||
FROM ghcr.io/tauffer-consulting/domino-base-piece:latest | ||
|
||
# Update package lists and install necessary dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
python3-dev \ | ||
python3-pip \ | ||
libopencv-dev | ||
|
||
# Install OpenCV using pip (Python package manager) | ||
RUN pip3 install opencv-python-headless | ||
|
||
# Set working directory (optional) | ||
WORKDIR /app |