suricodes commited on
Commit
2982eaa
·
verified ·
1 Parent(s): fae3fe1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,6 +11,9 @@ COPY . /app
11
 
12
  COPY .bashrc /root/.bashrc
13
 
 
 
 
14
  COPY requirements.txt /app/requirements.txt
15
  RUN pip install -r /app/requirements.txt
16
 
 
11
 
12
  COPY .bashrc /root/.bashrc
13
 
14
+ COPY mosesdecoder /app/mosesdecoder
15
+ RUN chmod +x /app/mosesdecoder/bin/mosesserver
16
+
17
  COPY requirements.txt /app/requirements.txt
18
  RUN pip install -r /app/requirements.txt
19