WIP
This commit is contained in:
parent
e70a0584c9
commit
a7a5b5c8ea
43 changed files with 5531 additions and 9 deletions
13
control_plane/container_assets/test_django/Containerfile
Normal file
13
control_plane/container_assets/test_django/Containerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM docker.io/library/python:3.14-slim
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||
PYTHONUNBUFFERED=1 \
|
||||
PIP_DISABLE_PIP_VERSION_CHECK=1
|
||||
|
||||
RUN python -m pip install --no-cache-dir \
|
||||
"django>=6.0.4" \
|
||||
"gunicorn>=23.0.0" \
|
||||
"psycopg[binary]>=3.2.9" \
|
||||
"redis>=6.0.0"
|
||||
|
||||
WORKDIR /srv/test-app
|
||||
Loading…
Add table
Add a link
Reference in a new issue