manage.py changed to lf; FTs tweaked to accomodate WSL2 ansible deployment

This commit is contained in:
Disco DeDisco
2026-01-13 20:58:05 -05:00
parent d942839308
commit 4b137db317
21 changed files with 881 additions and 848 deletions

View File

@@ -1,20 +1,20 @@
FROM python:3.13-slim
RUN python -m venv /.venv
ENV PATH="/.venv/bin:$PATH"
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
COPY src /src
WORKDIR /src
RUN python manage.py collectstatic
ENV DJANGO_DEBUG_FALSE=1
RUN adduser --uid 1234 nonroot
USER nonroot
FROM python:3.13-slim
RUN python -m venv /.venv
ENV PATH="/.venv/bin:$PATH"
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
COPY src /src
WORKDIR /src
RUN python manage.py collectstatic
ENV DJANGO_DEBUG_FALSE=1
RUN adduser --uid 1234 nonroot
USER nonroot
CMD ["gunicorn", "--bind", ":8888", "core.wsgi:application"]