CoolFace
Apppublic

exbert-project/exbert

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
183likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.72 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9RUN mkdir -p /.cache10 11RUN chmod 777 /.cache12 13COPY . .14 15CMD ["python", "server/main.py", "--port", "7860"]16