Files
MyMovieDB/Dockerfile
jonnybravo 370974a57d
Some checks failed
Deploy to ras-dan-01 / deploy (push) Has been cancelled
init
2025-08-26 14:35:48 +02:00

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"]