added dev make file for ease in development.
Some checks failed
Gitea build & run. / docker (push) Failing after 3s

This commit is contained in:
WGAVermeer
2026-03-08 13:20:45 +01:00
parent c9eb6d52be
commit acc116a6c1
4 changed files with 16 additions and 5 deletions

View File

@@ -1,10 +1,10 @@
FROM python:3.14-alpine
WORKDIR /app
WORKDIR /src
COPY requirements.txt /app/
COPY gunicorn.conf.py /app/
COPY ./src/ /app/
COPY requirements.txt /src/
COPY gunicorn.conf.py /src/
COPY ./src/ /src/
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r requirements.txt