File size: 1,731 Bytes
c7ebbee
 
 
 
 
 
 
 
 
 
 
1b0c007
19749fd
1b0c007
 
06da822
 
1b0c007
5e6697e
 
60ce03d
06da822
1b0c007
 
2be94c7
37f9e3e
1b0c007
574b6b7
 
8e30e56
 
 
 
 
 
 
2be94c7
 
06da822
d0fce4a
5e6697e
784fc81
 
 
 
6df90da
a9874e9
d0fce4a
 
 
39c4142
7c485e3
784fc81
4c525a8
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 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 curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh

RUN apt-get update
RUN apt-get install -y dotnet-sdk-7.0
RUN apt-get install -y aspnetcore-runtime-7.0
RUN apt-get install -y cmake
RUN apt-get install -y git-lfs

RUN git clone https://github.com/zhongkaifu/Seq2SeqSharp.git
WORKDIR /code/Seq2SeqSharp
RUN dotnet build Seq2SeqSharp.sln --configuration Release

WORKDIR /code/Seq2SeqSharp/ExternalProjects
RUN unzip SentencePiece.zip
WORKDIR /code/Seq2SeqSharp/ExternalProjects/SentencePiece
RUN mkdir build
WORKDIR /code/Seq2SeqSharp/ExternalProjects/SentencePiece/build
RUN cmake ..
RUN make -j $(nproc)
RUN make install
RUN ldconfig -v

WORKDIR /code

#RUN git clone https://huggingface.co/zhongkaifu/mt_enu_chs

RUN mkdir -p /code/bin
RUN chmod 777 /code/bin
WORKDIR /code/bin

RUN cp -r /code/Seq2SeqSharp/Tools/SeqWebApps/bin/Release/net7.0/* .
RUN wget https://github.com/zhongkaifu/Models/releases/download/MT_ENU_CHS/mt_enu_chs.model
RUN wget https://huggingface.co/zhongkaifu/mt_enu_chs/resolve/main/enuSpm.model
RUN wget https://huggingface.co/zhongkaifu/mt_enu_chs/resolve/main/cjkSpm.model
#RUN cp /code/mt_enu_chs/appsettings.json .

RUN ls -la /code/mt_enu_chs

CMD ["dotnet","/code/bin/SeqWebApps.dll"]