Skip to content

Instantly share code, notes, and snippets.

@cs224
cs224 / Dockerfile
Last active March 13, 2025 15:35
PGP via Roman Zayde’s Trezor-agent
# 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