first commit

This commit is contained in:
2025-10-14 18:38:53 +05:30
parent dcc3b3d142
commit 3b98edf310

View File

@ -1,9 +1,15 @@
FROM python:3.10-alpine
FROM python:3.10-slim
WORKDIR /app
# Install dependencies directly without mirror change
RUN apk add --no-cache gcc musl-dev python3-dev mariadb-dev libffi-dev openssl-dev
# Install dependencies
RUN apt-get update && apt-get install -y \
gcc \
default-libmysqlclient-dev \
pkg-config \
libssl-dev \
libffi-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt .