Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 38 additions & 21 deletions dashboard/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"date-fns": "^2.28.0",
"dayjs": "^1.11.19",
"fs-extra": "^11.3.3",
"gatsby": "^5.16.0",
"gatsby": "^5.16.1",
"gatsby-plugin-layout": "^4.16.0",
"gatsby-plugin-react-helmet": "^6.16.0",
"gatsby-plugin-react-svg": "^3.3.0",
Expand Down
14 changes: 9 additions & 5 deletions services/metrics-calculator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
FROM python:3.14-slim

COPY . /prmcalculator
# Update the package list and upgrade all installed system packages
RUN apt-get update && apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /prmcalculator
COPY ./src ./src
COPY setup.py .

ARG IMAGE_TAG
ENV BUILD_TAG=${IMAGE_TAG}

RUN pip install --upgrade pip && \
pip install setuptools && \
cd /prmcalculator && \
python setup.py install
RUN pip install --upgrade pip setuptools wheel && \
pip install .

ENTRYPOINT ["python", "-m", "prmcalculator.pipeline.main"]
4 changes: 4 additions & 0 deletions services/ods-downloader/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM python:3.14-slim

# Update the package list and upgrade all installed system packages
RUN apt-get update && apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /prmods
COPY ./src ./src
COPY setup.py .
Expand Down
14 changes: 9 additions & 5 deletions services/reports-generator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
FROM python:3.14-slim

COPY . /prmreportsgenerator
# Update the package list and upgrade all installed system packages
RUN apt-get update && apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /prmreportsgenerator
COPY ./src ./src
COPY setup.py .

ARG IMAGE_TAG
ENV BUILD_TAG=${IMAGE_TAG}

RUN pip install --upgrade pip && \
pip install setuptools && \
cd /prmreportsgenerator && \
python setup.py install
RUN pip install --upgrade pip setuptools wheel && \
pip install .

ENTRYPOINT ["python", "-m", "prmreportsgenerator.main"]
16 changes: 10 additions & 6 deletions services/spine-exporter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
FROM python:3.14-slim
RUN python --version
COPY . /prmexporter

# Update the package list and upgrade all installed system packages
RUN apt-get update && apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /prmexporter
COPY ./src ./src
COPY setup.py .

ARG IMAGE_TAG
ENV BUILD_TAG=${IMAGE_TAG}

RUN pip install --upgrade pip && \
pip install setuptools && \
cd /prmexporter && \
python setup.py install
RUN pip install --upgrade pip setuptools wheel && \
pip install .

ENTRYPOINT ["python", "-m", "prmexporter.main"]
14 changes: 9 additions & 5 deletions services/transfer-classifier/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
FROM python:3.14-slim

COPY . /prmdata
# Update the package list and upgrade all installed system packages
RUN apt-get update && apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*

WORKDIR /prmdata
COPY ./src ./src
COPY setup.py .

ARG IMAGE_TAG
ENV BUILD_TAG=${IMAGE_TAG}

RUN pip install --upgrade pip && \
pip install setuptools && \
cd /prmdata && \
python setup.py install
RUN pip install --upgrade pip setuptools wheel && \
pip install .

ENTRYPOINT ["python", "-m", "prmdata.pipeline.main"]
Loading