FROM registry.lazycat.cloud/u30387910/library/python:e44876804abb84a0

COPY requirements.txt /tmp/requirements.txt

# Keep all skill dependencies in the runtime image so the LPK only needs to
# carry application code and the immutable dependency manifest.
RUN python3 -m pip install --no-cache-dir --disable-pip-version-check \
      -r /tmp/requirements.txt \
    && rm -f /tmp/requirements.txt
