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
5 changes: 2 additions & 3 deletions om-bistro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

FROM python:3.8-slim-buster
FROM python:3.13.5-slim-bookworm

WORKDIR /python-docker

Expand All @@ -10,6 +9,6 @@ RUN pip3 install -r requirements.txt

COPY . .

ENV FLASK_APP openmensa_server
ENV FLASK_APP=openmensa_server

CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
2 changes: 1 addition & 1 deletion slurm-exporter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG SLURM_VERSION=24.05.3

FROM cimg/go:$GO_VERSION AS builder

ARG SLURM_EXPORTER_VERSION=0.21.1
ARG SLURM_EXPORTER_VERSION=0.21.2

WORKDIR /build
RUN wget "https://github.com/scalableminds/prometheus-slurm-exporter/archive/refs/tags/${SLURM_EXPORTER_VERSION}.zip" && unzip "${SLURM_EXPORTER_VERSION}.zip"
Expand Down