18 lines
322 B
Docker
18 lines
322 B
Docker
FROM python:3.12-bookworm
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
cmake \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY changelog2 /app/changelog2
|
|
|
|
WORKDIR /app/changelog2
|
|
|
|
ENTRYPOINT ["python", "main.py"]
|
|
|