ChmaraX / forensix

Google Chrome forensic tool to process, analyze and visualize browsing artifacts
MIT License
109 stars 24 forks source link

sklearn deprecated issue #93

Open hemanth5544 opened 1 month ago

hemanth5544 commented 1 month ago

The error message indicates that the sklearn package is deprecated and should be replaced with scikit-learn

make sure to change the Dockerfile like this

FROM nikolaik/python-nodejs:latest

RUN pip install --upgrade pip && \ pip install --no-cache-dir pathlib scikit-learn

Create app directory

WORKDIR /app

Install app dependencies

COPY package*.json ./

RUN npm install -qy

COPY . .

EXPOSE 3001 CMD [ "npm", "start" ]

hemanth5544 commented 1 month ago

changes in docker file