Files
plex-playlist/Dockerfile.integration-tester
copilotcoder f0b259e1c3
Some checks failed
CICD / Build and Publish CICD Base Image (push) Successful in 22s
CICD / Backend Tests (push) Has been cancelled
CICD / Pre-commit Checks (push) Has been cancelled
CICD / Frontend Tests (push) Has been cancelled
CICD / Backend Doctests (push) Has been cancelled
CICD / CICD Tests Complete (push) Has been cancelled
CICD / Build Integration Tester Image (push) Has been cancelled
CICD / Build E2E Tester Image (push) Has been cancelled
CICD / Build and Publish Runtime Images (push) Has been cancelled
CICD / Build and Push CICD Image (push) Has started running
CICD / Production Images Complete (push) Has been cancelled
CICD / Runtime Images Failure Postmortem (push) Has been cancelled
CICD / Source Lanes Failure Postmortem (push) Has been cancelled
CICD / Runtime Black-Box Integration Tests (push) Has been cancelled
CICD / End-to-End Tests (push) Has been cancelled
Add tester image lanes and production gates to CICD workflow
2026-07-07 18:01:48 -04:00

10 lines
186 B
Docker

FROM python:3.14-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
CMD ["bash"]