added Dockerfile to the root folder
This commit is contained in:
parent
165a6150f8
commit
d3bc5eae1a
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM python:3
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN pip install -r requirements.txt
|
||||
RUN cp -r data_folder_example data_folder
|
||||
VOLUME [ "/data_folder"]
|
||||
CMD [ "python","main.py" ]
|
@ -1,42 +1,39 @@
|
||||
remote: [true/false]
|
||||
remote: true
|
||||
|
||||
experienceLevel:
|
||||
internship: [true/false]
|
||||
entry: [true/false]
|
||||
associate: [true/false]
|
||||
mid-senior level: [true/false]
|
||||
director: [true/false]
|
||||
executive: [true/false]
|
||||
internship: true
|
||||
entry: true
|
||||
associate: true
|
||||
mid-senior level: true
|
||||
director: false
|
||||
executive: false
|
||||
|
||||
jobTypes:
|
||||
full-time: [true/false]
|
||||
contract: [true/false]
|
||||
part-time: [true/false]
|
||||
temporary: [true/false]
|
||||
internship: [true/false]
|
||||
other: [true/false]
|
||||
volunteer: [true/false]
|
||||
full-time: true
|
||||
contract: false
|
||||
part-time: false
|
||||
temporary: true
|
||||
internship: false
|
||||
other: false
|
||||
volunteer: true
|
||||
|
||||
date:
|
||||
all time: [true/false]
|
||||
month: [true/false]
|
||||
week: [true/false]
|
||||
24 hours: [true/false]
|
||||
all time: false
|
||||
month: true
|
||||
week: false
|
||||
24 hours: true
|
||||
|
||||
positions:
|
||||
- position1
|
||||
- position2
|
||||
- Software Tester
|
||||
|
||||
|
||||
locations:
|
||||
- Country1
|
||||
- Country2
|
||||
- USA
|
||||
|
||||
distance: 100
|
||||
|
||||
companyBlacklist:
|
||||
- Company1
|
||||
- Company2
|
||||
- Noir
|
||||
- Crossover
|
||||
|
||||
titleBlacklist:
|
||||
- word1
|
||||
- word2
|
Loading…
Reference in New Issue
Block a user