This file contains hidden or 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
# Dockerfile | |
FROM python:3.12-slim | |
# Install system dependencies. You might need more packages (like gnupg2, libusb, etc.). | |
RUN apt-get update && apt-get install -y gnupg2 usbutils libusb-1.0-0-dev libudev-dev git curl && rm -rf /var/lib/apt/lists/* | |
# The working directory inside the container | |
WORKDIR /app |
OlderNewer