diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..27c3f52 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,19 @@ +FROM gitpod/workspace-full + +USER gitpod + +RUN echo 'unset PIP_USER' >> ~/.bashrc + +USER root + +RUN apt-get install -y python3-tk && curl -O https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh && bash Anaconda3-2020.02-Linux-x86_64.sh -b -p /opt/conda && \ +rm Anaconda3-2020.02-Linux-x86_64.sh && \ +ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \ +echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \ +echo "conda activate base" >> ~/.bashrc && \ +echo "Set disable_coredump false" >> /etc/sudo.conf && \ +sudo -s source ~/.bashrc + +RUN . /opt/conda/etc/profile.d/conda.sh && \ +conda create --name resumefilter python=3.7.6 && \ +conda activate resumefilter \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..5afffd9 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,4 @@ +image: + file: .gitpod.Dockerfile +tasks: + - init: pip install -U pip && pip install -e . \ No newline at end of file diff --git a/README.md b/README.md index 7871e6a..44fa95f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/0dust/ResumeFilter) + # Resume-Filter Extracting relevant information from resume using Deep Learning.