Skip to content

Commit b19c532

Browse files
fixes
1 parent 6f839ca commit b19c532

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ WORKDIR /app
3030
COPY requirements.txt .
3131

3232
# Install Python dependencies with optimizations
33-
RUN pip install --no-cache-dir --disable-pip-version-check --no-compile \
34-
-r requirements.txt \
35-
&& pip cache purge
33+
RUN pip install --upgrade pip setuptools wheel && \
34+
pip install --no-cache-dir --disable-pip-version-check \
35+
-r requirements.txt
3636

3737
# Copy application code
3838
COPY . .

requirements.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
flask>=2.3.0
2-
flask-login>=0.6.3
3-
flask-wtf>=1.1.1
4-
werkzeug>=2.3.0
5-
bcrypt>=4.0.1
6-
APScheduler>=3.10.4
7-
PyGithub>=1.59.1
8-
gitpython>=3.1.32
9-
python-dotenv>=1.0.0
10-
requests>=2.31.0
11-
sqlalchemy>=2.0.21
12-
flask-sqlalchemy>=3.0.5
13-
wtforms>=3.0.1
14-
gunicorn>=21.2.0
1+
flask==2.3.3
2+
flask-login==0.6.3
3+
flask-wtf==1.1.1
4+
werkzeug==2.3.7
5+
bcrypt==4.0.1
6+
APScheduler==3.10.4
7+
PyGithub==1.59.1
8+
gitpython==3.1.37
9+
python-dotenv==1.0.0
10+
requests==2.31.0
11+
sqlalchemy==2.0.23
12+
flask-sqlalchemy==3.0.5
13+
wtforms==3.1.0
14+
gunicorn==21.2.0

0 commit comments

Comments
 (0)