10 lines
227 B
Docker
10 lines
227 B
Docker
FROM schmelczera/great-ai:v0.1.4
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
|
|
|
COPY . ./
|
|
|
|
RUN large-file --backend s3 --secrets s3.ini --cache scibert-highlights
|
|
|
|
CMD ["deploy.ipynb"]
|