-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6037 from guymguym/guy-md5
md5_mb (multibuffer) using isa-l_crypto
- Loading branch information
Showing
19 changed files
with
412 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
FROM centos:8 | ||
|
||
ENV container docker | ||
|
||
RUN dnf update -y -q && \ | ||
dnf install -y -q \ | ||
bash bash-completion \ | ||
wget curl nc unzip which less vim \ | ||
python2 python2-setuptools \ | ||
python3 python3-setuptools \ | ||
gdb strace lsof \ | ||
openssl && \ | ||
dnf --enablerepo=PowerTools install -y -q yasm && \ | ||
dnf group install -y -q "Development Tools" && \ | ||
dnf clean all | ||
|
||
RUN mkdir -p /usr/local/lib/python3.6/site-packages | ||
RUN alternatives --set python /usr/bin/python3 | ||
|
||
WORKDIR /noobaa | ||
|
||
COPY ./.nvmrc ./.nvmrc | ||
COPY ./src/deploy/NVA_build/install_nodejs.sh ./ | ||
RUN chmod +x ./install_nodejs.sh && \ | ||
./install_nodejs.sh $(cat .nvmrc) && \ | ||
npm config set unsafe-perm true && \ | ||
echo '{ "allow_root": true }' > /root/.bowerrc | ||
|
||
COPY ./package*.json ./ | ||
RUN npm install && \ | ||
npm cache clean --force | ||
|
||
COPY . ./ | ||
USER 0:0 | ||
CMD [ "bash" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.