Update Dockerfile
Browse files- 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 |
|