19 lines
362 B
Docker
19 lines
362 B
Docker
FROM python:3.9-slim-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
# Install build dependencies for mariadb-connector-c
|
|
RUN apt-get update && apt-get install -y \
|
|
default-libmysqlclient-dev \
|
|
gcc \
|
|
pkg-config \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 5082
|
|
|
|
CMD ["python3", "main.py"] |