Fix Dockerfile and Python version
All checks were successful
docker-image / docker (push) Successful in 9m56s
All checks were successful
docker-image / docker (push) Successful in 9m56s
This commit is contained in:
parent
afcaa77d81
commit
afa8e93495
3 changed files with 26 additions and 4 deletions
|
@ -1,11 +1,12 @@
|
|||
FROM docker.io/library/debian:12-slim AS builder
|
||||
RUN apt-get update && \
|
||||
apt-get install --no-install-suggests --no-install-recommends --yes pipx
|
||||
apt-get install --no-install-suggests --no-install-recommends --yes python3 pipx
|
||||
ENV PATH="/root/.local/bin:${PATH}"
|
||||
RUN pipx install poetry
|
||||
RUN pipx inject poetry poetry-plugin-bundle
|
||||
WORKDIR /src
|
||||
COPY . .
|
||||
RUN ln -s /usr/bin/python3 /usr/bin/python
|
||||
RUN poetry bundle venv --python=/usr/bin/python3 --only=main /venv
|
||||
|
||||
FROM gcr.io/distroless/python3-debian12
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue