File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ WORKDIR /app
3030COPY 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
3838COPY . .
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments