File size: 919 Bytes
7758a4b 4d9d78e 7758a4b 4d9d78e 7758a4b 4d9d78e 7758a4b 4d9d78e 7758a4b 4d9d78e 7758a4b 4d9d78e 7758a4b 4d9d78e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# Use Python slim image as base
FROM python:3.10-slim
# Set environment variables
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PIP_NO_CACHE_DIR=1
# Create and set working directory
WORKDIR /app
# Create non-root user first
RUN useradd -m -u 1000 appuser
# Install system dependencies including build tools
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
build-essential \
cmake \
&& rm -rf /var/lib/apt/lists/*
# Install pdm
RUN pip install --no-cache-dir pdm
# Copy project files and set permissions
COPY . .
RUN chown -R appuser:appuser /app && \
chmod -R 755 /app
# Switch to non-root user
USER appuser
# Install dependencies in a virtual environment
RUN pdm install --prod --no-lock
# Expose Gradio port
EXPOSE 7860
# Start command using pdm run to use the virtual environment
CMD ["pdm", "run", "python", "-m", "synthetic_dataset_generator"] |