File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ WORKDIR $APP_HOME
38
38
COPY --from=builder $WHEELS_PATH $WHEELS_PATH
39
39
COPY ./web/setup.cfg ./web/pyproject.toml ./
40
40
COPY ./web/src/requirements ./src/requirements
41
- RUN pip install --no-build-isolation --no-index --find-links=$WHEELS_PATH --editable .[production] && \
41
+ RUN pip install --upgrade pip setuptools && \
42
+ pip install --no-build-isolation --no-index --find-links=$WHEELS_PATH --editable .[production] && \
42
43
rm -rf $WHEELS_PATH
43
44
44
45
COPY --chown=$USER:$USER ./docker/prod/web/entrypoint.sh /
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = django-template
3
- description = Django template in docker with docker-compose
3
+ description = Django template
4
4
author = Nazarii Romanchenko
5
5
url = https://github.com/bandirom/django-template
6
6
classifiers =
7
7
Environment :: Web Environment
8
8
Framework :: Django
9
- Framework :: Django :: 4.1
9
+ Framework :: Django :: 4.2
10
10
Intended Audience :: Developers
11
11
License :: OSI Approved :: MIT License
12
12
Operating System :: OS Independent
@@ -15,9 +15,12 @@ classifiers =
15
15
Programming Language :: Python :: 3 :: Only
16
16
Programming Language :: Python :: 3.10
17
17
Programming Language :: Python :: 3.11
18
+ Programming Language :: Python :: 3.12
19
+ Programming Language :: Python :: 3.13
18
20
Topic :: Internet :: WWW/HTTP
19
21
Topic :: Internet :: WWW/HTTP :: Dynamic Content
20
22
Topic :: Internet :: WWW/HTTP :: WSGI
23
+ Topic :: Internet :: WWW/HTTP :: ASGI
21
24
22
25
[options]
23
26
packages = find:
You can’t perform that action at this time.
0 commit comments