requirements.txt renamed > requirements.dev.txt; new requirements.txt file handles only those dependencies necessary for docker image building and container running; Dockerfile therefore updated accordingly

This commit is contained in:
Disco DeDisco
2026-01-04 23:31:32 -05:00
parent ac3518f4a6
commit 9c38d3f0b3
2 changed files with 2 additions and 1 deletions

View File

@@ -3,7 +3,8 @@ FROM python:3.13-slim
RUN python -m venv /.venv RUN python -m venv /.venv
ENV PATH="/.venv/bin:$PATH" ENV PATH="/.venv/bin:$PATH"
RUN pip install "django<7" gunicorn COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
COPY src /src COPY src /src

Binary file not shown.