From 8c97ae31a23bca95d8adff241421e0d99ddb807b Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 28 Oct 2024 01:11:25 +0000 Subject: [PATCH] revert dockerfile --- Dockerfile | 50 +++++++------------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/Dockerfile b/Dockerfile index b314363..49c61b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,8 @@ -# Use the specified Slurm base image with slurmdbd +# Use the Slurm base image FROM ghcr.io/watonomous/slurm-dist:sha-d71cada1ede70e133c6765e0239840ec97aadd40-slurmdbd # Install Python and any dependencies -RUN apt-get update && apt-get install -y python3 python3-pip supervisor inotify-tools liblua5.3-0 libmysqlclient21 \ - && rm -rf /var/lib/apt/lists/* - -# Create users -RUN groupadd --gid 64029 munge && useradd --uid 64029 --gid 64029 --home-dir /var/spool/munge --no-create-home --shell /bin/false munge -RUN groupadd --gid 64030 slurm && useradd --uid 64030 --gid 64030 --home-dir /var/spool/slurm --no-create-home --shell /bin/false slurm - -# Set up munge directory -RUN mkdir /run/munge && chown munge:munge /run/munge +RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/* # Set the working directory in the container WORKDIR /app @@ -22,37 +14,9 @@ COPY main.py config.py runner_size_config.py RunningJob.py allocate-ephemeral-ru COPY requirements.txt /app/ RUN pip3 install -r requirements.txt -# Set up runtime configurations for slurmctld -RUN mkdir /etc/slurm /etc/runtime_config && touch /etc/runtime_config/passwd /etc/runtime_config/group -RUN cp /etc/passwd /etc/passwd.system && cp /etc/group /etc/group.system - -# Copy and prepare daemon-specific configurations -COPY daemon-base/supervisord.conf /etc/supervisord.conf -COPY daemon-base/prefix-output.sh /opt/prefix-output.sh -RUN chmod +x /opt/prefix-output.sh - -# Copy and set permissions for slurmctld and slurmdbd runtime agents -COPY slurmctld/runtime-agent.sh /opt/runtime-agent.sh -RUN chmod +x /opt/runtime-agent.sh -COPY slurmdbd/runtime-agent.sh /opt/runtime-agent.sh -RUN chmod +x /opt/runtime-agent.sh - -# Copy entrypoint and supervisor configurations for slurmctld and slurmdbd -COPY slurmctld/entrypoint.sh /opt/entrypoint.sh -RUN chmod +x /opt/entrypoint.sh -COPY slurmctld/supervisor-conf/ /etc/supervisor/conf.d/ -COPY slurmdbd/supervisor-conf/ /etc/supervisor/conf.d/ - -# Expose ports if needed by Slurm -EXPOSE 6817 6818 6819 - -# Environment variables for custom configuration paths -ENV MUNGED_ARGS= \ - SLURMCTLD_ARGS= \ - MUNGE_KEY_IMPORT_PATH=/etc/munge/munge.imported.key - -# Start supervisord for process management and the Python script -CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"] - -# Run the Python script as the main application entry point +# Run the Python script +# Note the env variable GITHUB_ACCESS_TOKEN will need to be set in order to authenticate with the GitHub API +# CMD ["python3", "main.py"] ENTRYPOINT ["python3", "/app/main.py"] + +# USER alexboden \ No newline at end of file