File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 5454 context : .
5555 platforms : linux/amd64,linux/arm64,linux/arm/v7
5656 push : true
57+ cache-from : type=gha
58+ cache-to : type=gha,mode=max
5759 tags : |
5860 ghcr.io/${{ steps.lowercase-repository.outputs.lowercase }}/saic-mqtt-gateway:dev
5961 ghcr.io/${{ steps.lowercase-repository.outputs.lowercase }}/saic-mqtt-gateway:${{ env.RELEASE_VERSION }}
6567 context : .
6668 platforms : linux/amd64,linux/arm64,linux/arm/v7
6769 push : true
70+ cache-from : type=gha
71+ cache-to : type=gha,mode=max
6872 tags : |
6973 ghcr.io/${{ steps.lowercase-repository.outputs.lowercase }}/saic-mqtt-gateway:dev
7074 ghcr.io/${{ steps.lowercase-repository.outputs.lowercase }}/saic-mqtt-gateway:${{ env.RELEASE_VERSION }}
Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ RUN pip install "poetry==${POETRY_VERSION}"
1616
1717WORKDIR /usr/src/app
1818
19+ # Install gcc and python3-dev for native code
20+ RUN apt-get update \
21+ && apt-get install -y --no-install-recommends gcc python3-dev \
22+ && rm -rf /var/lib/apt/lists/*
23+
1924# --- Reproduce the environment ---
2025# You can comment the following two lines if you prefer to manually install
2126# the dependencies from inside the container.
You can’t perform that action at this time.
0 commit comments