Skip to content
Merged
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
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ ARG COMMIT_SHA=master
# Set the working directory in the container
WORKDIR /usr/src/app

# Install the package directly from the specific commit on GitHub
RUN pip3 install 'git+https://github.com/SigProfilerSuite/SigProfilerMatrixGenerator.git@'${COMMIT_SHA}
# Upgrade the Ubuntu packaging toolchain before building the project.
RUN python3 -m pip install --upgrade pip "setuptools>=69" wheel && \
python3 -m pip install \
"git+https://github.com/SigProfilerSuite/SigProfilerMatrixGenerator.git@${COMMIT_SHA}"

# Create a non-root user
RUN useradd -m -s /bin/bash spm_user
Expand Down
Loading