We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9ff49 commit c564909Copy full SHA for c564909
Dockerfile
@@ -1,3 +1,5 @@
1
+FROM docker.io/golang:1.24.5 AS golang
2
+
3
FROM docker.io/python:3.12.11-slim-bookworm AS base
4
5
ARG TARGETARCH
@@ -21,6 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
21
23
&& curl -sSL https://install.python-poetry.org | python - --version ${POETRY_VERSION} \
22
24
&& mkdir -p /app/.config
25
26
+COPY --from=golang /usr/local/go /usr/local/go
27
28
COPY pyproject.toml poetry.lock ./
29
0 commit comments