Booking out QR code

This commit is contained in:
2026-02-20 12:19:21 -05:00
parent a43cf9b732
commit 3a4085afc6
7 changed files with 93 additions and 2 deletions

View File

@@ -3,11 +3,12 @@ FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies
# Install system dependencies including qrencode
RUN apt-get update && apt-get install -y \
gcc \
default-libmysqlclient-dev \
pkg-config \
qrencode \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching