Skip to content

Commit

Permalink
fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
alexboden committed Nov 11, 2024
1 parent 77067e0 commit 75e74cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ COPY main.py config.py runner_size_config.py RunningJob.py allocate-ephemeral-ru
# Install Python requirements
COPY requirements.txt /home/watcloud-slurm-ci/
RUN pip3 install -r requirements.txt
RUN chmod +x /start.sh
RUN chmod +x start.sh

# 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", "/home/watcloud-slurm-ci/start.sh"]
ENTRYPOINT ["/home/watcloud-slurm-ci/start.sh"]
# ENTRYPOINT ["python3", "/app/main.py"]

# Custom user for running the CI
Expand Down

0 comments on commit 75e74cf

Please sign in to comment.