Spaces:
Sleeping
Sleeping
File size: 1,005 Bytes
c7ebbee 1b0c007 19749fd 1b0c007 5e6697e 1b0c007 19749fd 37f9e3e 1b0c007 5e6697e 37f9e3e 5e6697e 1b0c007 c7ebbee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN wget https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
RUN dpkg -i packages-microsoft-prod.deb
RUN rm packages-microsoft-prod.deb
RUN apt-get update
RUN apt-get install -y dotnet-sdk-7.0
RUN apt-get install -y aspnetcore-runtime-7.0
RUN git clone https://github.com/zhongkaifu/Seq2SeqSharp.git
RUN cd Seq2SeqSharp
RUN dotnet build Seq2SeqSharp.sln --configuration Release
RUN cd ..
RUN mkdir bin
RUN cd bin
RUN cp -r ../Seq2SeqSharp/Tools/Seq2SeqConsole/bin/* .
RUN ls -la
RUN cd ..
RUN git lfs install
RUN git clone https://huggingface.co/zhongkaifu/mt_enu_chs
RUN ls -la
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|