sociofillmore_public / Dockerfile
Gosse Minnema
Add sociofillmore code, load dataset via private dataset repo
b11ac48
raw
history blame
No virus
305 Bytes
FROM python:3.9
WORKDIR /app
ADD . /app
RUN mkdir /nltk_data
RUN mkdir /.allennlp
RUN mkdir /.cache
RUN mkdir /.local
RUN chmod -R 777 /nltk_data
RUN chmod -R 777 /.allennlp
RUN chmod -R 777 /.cache
RUN chmod -R 777 /.local
RUN pip install -v -r requirements.combined.txt
CMD ["sh", "docker_commands.sh"]