We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 030da21 commit f1c1ddaCopy full SHA for f1c1dda
slurm-python/Dockerfile
@@ -7,12 +7,14 @@ FROM docker.io/python:$PYTHON_VERSION
7
ARG SLURM_VERSION="24.05.3"
8
ARG SLUMR_USER_UID=990
9
ARG SLURM_USER_GID=990
10
+ARG VOXELYTICS_USER_UID=999
11
-RUN apt-get update && apt-get install -y curl
12
+RUN apt-get update && apt-get install -y curl libpq-dev
13
14
# Setup Slurm User
15
RUN addgroup --gid "$SLURM_USER_GID" slurm \
16
&& adduser --system --uid "$SLUMR_USER_UID" --ingroup slurm slurm
17
+RUN adduser --system --uid "$VOXELYTICS_USER_UID" --ingroup staff voxelytics
18
19
# Install Slurm Client
20
RUN curl -Lo /tmp/slurm-smd.deb "https://github.com/scalableminds/slurm-packages/releases/download/$SLURM_VERSION/slurm-smd_$SLURM_VERSION-1_amd64.deb" \
0 commit comments