Update digest-score to run new model

This commit is contained in:
Jackson Harper
2024-06-20 15:49:12 +08:00
parent 99c95194d0
commit 17e5978792
9 changed files with 638 additions and 465 deletions

View File

@ -0,0 +1,13 @@
FROM python:3.8-slim
WORKDIR /app
ENV GRPC_PYTHON_BUILD_SYSTEM_OPENSSL "1"
ENV GRPC_PYTHON_BUILD_SYSTEM_ZLIB "1"
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "serve.py"]