|
|
|
|
|
FROM python:3.9-slim |
|
|
|
|
|
ENV PYTHONUNBUFFERED True |
|
|
|
|
|
ENV APP_HOME /app |
|
WORKDIR $APP_HOME |
|
COPY . ./ |
|
|
|
|
|
COPY requirements.txt / |
|
RUN pip install -r requirements.txt |
|
|
|
|
|
ADD https://storage.googleapis.com/uncertainty-over-space/zari-bert-cda/pytorch_model.bin zari-bert-cda/pytorch_model.bin |
|
ADD https://huggingface.co/bert-large-uncased-whole-word-masking/resolve/main/pytorch_model.bin bert-large-uncased-whole-word-masking/pytorch_model.bin |
|
|
|
|
|
CMD exec gunicorn --bind :$PORT --workers 1 --threads 1 --timeout 0 main:app |
|
|