17 lines
309 B
Docker
17 lines
309 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy project and install
|
|
COPY . .
|
|
RUN pip install --break-system-packages .
|
|
|
|
# Entry point
|
|
ENTRYPOINT ["dcos"]
|
|
CMD ["--help"]
|