We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4854b2 commit 8e215e3Copy full SHA for 8e215e3
Dockerfile
@@ -5,6 +5,9 @@ FROM python:3.12-slim AS test
5
6
WORKDIR /app
7
8
+# THIS LINE FIXES EVERYTHING
9
+ENV PYTHONPATH=/app
10
+
11
COPY requirements.txt .
12
RUN pip install --no-cache-dir -r requirements.txt pytest
13
@@ -13,6 +16,7 @@ COPY . .
16
CMD ["pytest"]
14
17
15
18
19
20
# ======================
21
# Stage 2: Production stage
22
0 commit comments