We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daf7850 commit 3edf754Copy full SHA for 3edf754
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.12-slim AS builder
+FROM python:3.12 AS builder
2
3
# --- Install Poetry ---
4
ARG POETRY_VERSION=1.8
@@ -16,11 +16,6 @@ RUN pip install "poetry==${POETRY_VERSION}"
16
17
WORKDIR /usr/src/app
18
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
-
24
# --- Reproduce the environment ---
25
# You can comment the following two lines if you prefer to manually install
26
# the dependencies from inside the container.
0 commit comments