Docker - in CI/CD
Given this Dockerfile snippet in a CI/CD pipeline:
What happens when the image runs?
FROM python:3.12-slim COPY . /app WORKDIR /app RUN pip install -r requirements.txt CMD ["python", "app.py"]
What happens when the image runs?
