16 lines
334 B
Docker
16 lines
334 B
Docker
FROM python:3.13.5-slim
|
|
|
|
EXPOSE 5000
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN python3 -m pip install --upgrade pip
|
|
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
RUN python3 -m pip install -e .
|
|
|
|
CMD [ "gunicorn", "--config", "rstat_tool/gunicorn-cfg.py", "-k", "sync", "rstat_tool.dashboard:app" ] |