zhongkaifu commited on
Commit
784fc81
·
1 Parent(s): 0d67223

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -35,8 +35,12 @@ RUN ldconfig -v
35
  WORKDIR /code
36
  RUN git clone https://huggingface.co/zhongkaifu/mt_enu_chs
37
 
38
- RUN pwd
 
 
 
39
  RUN cp -r /code/Seq2SeqSharp/Tools/SeqWebApps/bin/Release/net7.0/* .
40
  RUN cp /code/mt_enu_chs/appsettings.json .
41
 
42
- CMD ["dotnet", "/code/SeqWebApps.dll"]
 
 
35
  WORKDIR /code
36
  RUN git clone https://huggingface.co/zhongkaifu/mt_enu_chs
37
 
38
+ RUN mkdir -p /code/bin
39
+ RUN chmod 777 /code/bin
40
+ WORKDIR /code/bin
41
+
42
  RUN cp -r /code/Seq2SeqSharp/Tools/SeqWebApps/bin/Release/net7.0/* .
43
  RUN cp /code/mt_enu_chs/appsettings.json .
44
 
45
+
46
+ CMD ["dotnet", "/code/bin/SeqWebApps.dll"]