Gosse Minnema
commited on
Commit
·
34cc06e
1
Parent(s):
2a8005f
enable lfs
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -2,6 +2,10 @@ FROM python:3.9
|
|
| 2 |
WORKDIR /app
|
| 3 |
ADD . /app
|
| 4 |
RUN chmod -R 777 /app
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
RUN git clone https://huggingface.co/FacebookAI/xlm-roberta-large
|
| 6 |
|
| 7 |
RUN mkdir /nltk_data
|
|
|
|
| 2 |
WORKDIR /app
|
| 3 |
ADD . /app
|
| 4 |
RUN chmod -R 777 /app
|
| 5 |
+
|
| 6 |
+
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
| 7 |
+
RUN apt-get install git-lfs
|
| 8 |
+
RUN git lfs install
|
| 9 |
RUN git clone https://huggingface.co/FacebookAI/xlm-roberta-large
|
| 10 |
|
| 11 |
RUN mkdir /nltk_data
|