Skip to content

Commit

Permalink
restored node and sklearn versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-m-dev committed Aug 1, 2023
1 parent 1f6c177 commit da9857d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/lab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update --fix-missing && \
i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& wget --quiet https://nodejs.org/dist/v16.18.1/node-v16.18.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
&& wget --quiet https://nodejs.org/dist/v12.22.9/node-v12.22.9-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
tar -xvf ~/node.tar.xz -C /usr/local/ --strip-components=1 --no-same-owner && \
rm ~/node.tar.xz && \
ln -s /usr/local/bin/node /usr/local/bin/nodejs && \
Expand Down
2 changes: 1 addition & 1 deletion docker/lab/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scikit-learn==0.24.2
scikit-learn==0.23.2
tqdm==4.64.1
pymongo==4.3.3
pandas==1.1.0
Expand Down
2 changes: 1 addition & 1 deletion docker/machine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update --fix-missing && apt-get install -y \
i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& wget --quiet https://nodejs.org/dist/v16.18.1/node-v16.18.1-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
&& wget --quiet https://nodejs.org/dist/v12.22.9/node-v12.22.9-linux-$ARCH.tar.xz -O ~/node.tar.xz && \
tar -xvf ~/node.tar.xz -C /usr/local/ --strip-components=1 --no-same-owner && \
rm ~/node.tar.xz && \
ln -s /usr/local/bin/node /usr/local/bin/nodejs && \
Expand Down
2 changes: 1 addition & 1 deletion docker/machine/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scikit-learn==0.24.2
scikit-learn==0.23.2
tqdm==4.64.1
pymongo==4.3.3
pandas==1.1.0
Expand Down
2 changes: 1 addition & 1 deletion lab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"devDependencies": {
"@types/node": "^10.17.21",
"jest": "^26.0.1",
"jest-html-reporter": "^3.1.3",
"jest-html-reporter": "^2.8.2",
"jest-junit": "^10.0.0",
"supertest": "^4.0.2",
"typescript": "^3.8.3"
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# FROM node:12.22.9-slim
FROM node:18.16.1-slim
# FROM node:18.16.1-slim
FROM node:14.21.3-slim
WORKDIR /src

RUN apt-get update && apt-get install -y vim dos2unix
Expand Down

0 comments on commit da9857d

Please sign in to comment.