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 0c052c8 commit 18478d8Copy full SHA for 18478d8
Dockerfile
@@ -1,6 +1,6 @@
1
ARG PYTHON_VERSION=3.13
2
3
-FROM python:${PYTHON_VERSION}-slim AS builder-image
+FROM python:${PYTHON_VERSION}-alpine AS builder-image
4
ARG DEBIAN_FRONTEND=noninteractive
5
ARG WORKDIR=/usr/src/
6
@@ -10,7 +10,7 @@ ENV PATH="${WORKDIR}/venv/bin:$PATH"
10
COPY requirements.txt .
11
RUN pip install --no-cache-dir -r requirements.txt
12
13
-FROM python:${PYTHON_VERSION}-slim AS app
+FROM python:${PYTHON_VERSION}-alpine AS app
14
15
16
0 commit comments