Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/airflow-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PLATFORM=x86_64
ARG BASE_IMAGE=python:3.10-bookworm
ARG BASE_IMAGE=python:3.10-slim-bookworm
FROM --platform=$PLATFORM ${BASE_IMAGE}

RUN mkdir /proto
Expand Down
7 changes: 4 additions & 3 deletions build/python-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
ARG PLATFORM=x86_64
ARG BASE_IMAGE=python:3.9-bookworm
ARG BASE_IMAGE=python:3.9-slim-bookworm
FROM --platform=$PLATFORM ${BASE_IMAGE}

RUN mkdir /proto

# Install dependencies for the python client including test extras
COPY client/python/pyproject.toml /code/pyproject.toml

RUN pip install "/code[test]"
RUN pip install --no-cache-dir "/code[test]"

# Creating folders, and files for a project:
# Copy the full client sources after deps are installed for better layer reuse
COPY client/python /code

ENTRYPOINT ["/bin/bash"]
Loading