Files
vet-print-client/Dockerfile
2026-02-06 17:35:31 +00:00

20 lines
470 B
Docker

FROM python:3.9-slim
# Disable Python output buffering
ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
fonts-dejavu \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Application files will be mounted via volume
# Run the application
CMD ["python", "client.py"]