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 b1d985a commit 525cd95Copy full SHA for 525cd95
Dockerfile
@@ -1,13 +1,13 @@
1
# Build stage
2
-FROM python:3.11 AS builder
+FROM python:3.11-slim AS builder
3
RUN pip install -U pip setuptools wheel
4
# Copy files
5
COPY requirements.frozen.txt /project/
6
WORKDIR /project
7
RUN pip install --no-cache-dir -r requirements.frozen.txt
8
9
# Execution stage
10
-FROM python:3.11
+FROM python:3.11-slim
11
WORKDIR /app
12
COPY src/ /project/src
13
# Retrieve packages from build stage
0 commit comments