Skip to content

Commit 18478d8

Browse files
authored
fix(docker): change base image to alpine
1 parent 0c052c8 commit 18478d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG PYTHON_VERSION=3.13
22

3-
FROM python:${PYTHON_VERSION}-slim AS builder-image
3+
FROM python:${PYTHON_VERSION}-alpine AS builder-image
44
ARG DEBIAN_FRONTEND=noninteractive
55
ARG WORKDIR=/usr/src/
66

@@ -10,7 +10,7 @@ ENV PATH="${WORKDIR}/venv/bin:$PATH"
1010
COPY requirements.txt .
1111
RUN pip install --no-cache-dir -r requirements.txt
1212

13-
FROM python:${PYTHON_VERSION}-slim AS app
13+
FROM python:${PYTHON_VERSION}-alpine AS app
1414
ARG DEBIAN_FRONTEND=noninteractive
1515
ARG WORKDIR=/usr/src/
1616

0 commit comments

Comments
 (0)