fix: add Dockerfile.dcos, fix .woodpecker.yml paths and remove || true

This commit is contained in:
Celes Renata
2026-08-02 05:59:18 -07:00
parent 5c69676bcf
commit 35df7d7522
2 changed files with 17 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
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"]