Files
pipeline-bridge/Dockerfile

14 lines
324 B
Docker

# Pipeline Bridge - Using handler-base
ARG BASE_TAG=latest
FROM ghcr.io/billy-davies-2/handler-base:${BASE_TAG}
WORKDIR /app
# Install additional dependencies from pyproject.toml
COPY pyproject.toml .
RUN uv pip install --system --no-cache httpx kubernetes
COPY pipeline_bridge.py .
CMD ["python", "pipeline_bridge.py"]