Skip to content

Commit 525cd95

Browse files
authored
chore: use slim version of base image (#74)
Use slim version of base image.
1 parent b1d985a commit 525cd95

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,13 +1,13 @@
11
# Build stage
2-
FROM python:3.11 AS builder
2+
FROM python:3.11-slim AS builder
33
RUN pip install -U pip setuptools wheel
44
# Copy files
55
COPY requirements.frozen.txt /project/
66
WORKDIR /project
77
RUN pip install --no-cache-dir -r requirements.frozen.txt
88

99
# Execution stage
10-
FROM python:3.11
10+
FROM python:3.11-slim
1111
WORKDIR /app
1212
COPY src/ /project/src
1313
# Retrieve packages from build stage

0 commit comments

Comments
 (0)