Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0dust/gitpod setup #9

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
19 changes: 19 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: pip install -U pip && pip install -e .
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down