Skip to content

Commit 7363656

Browse files
Merge pull request #48 from GitTimeraider/develop
Update requirements
2 parents 519e1b3 + 4c688d4 commit 7363656

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM python:3.13-slim as builder
2+
FROM python:3.14-slim as builder
33

44
WORKDIR /app
55

@@ -19,7 +19,7 @@ COPY requirements.txt .
1919
RUN pip install --no-cache-dir -r requirements.txt
2020

2121
# Runtime stage
22-
FROM python:3.13-slim
22+
FROM python:3.14-slim
2323

2424
WORKDIR /app
2525

@@ -39,8 +39,8 @@ RUN groupadd -r -g 1000 appgroup \
3939
&& mkdir -p /app/instance \
4040
&& chown -R appuser:appgroup /app
4141

42-
# Copy installed packages from builder stage
43-
COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
42+
# Copy installed packages from builder stage (version-agnostic)
43+
COPY --from=builder /usr/local/lib/ /usr/local/lib/
4444
COPY --from=builder /usr/local/bin /usr/local/bin
4545

4646
# Copy application files and set ownership

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Werkzeug==3.1.3
1111
requests==2.32.5
1212

1313
# Database drivers
14-
psycopg[binary,pool]==3.2.3
15-
PyMySQL==1.1.1
14+
psycopg[binary,pool]==3.2.10
15+
PyMySQL==1.1.2

0 commit comments

Comments
 (0)