We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e45093 commit 8ede9dcCopy full SHA for 8ede9dc
2 files changed
Dockerfile
@@ -22,8 +22,7 @@ ENV LANG en_US.UTF-8
22
ENV LANGUAGE en_US:en
23
ENV LC_ALL en_US.UTF-8
24
25
-COPY requirements.txt /app/
+COPY . /app
26
27
-RUN pip3 install -r requirements.txt
+RUN python3 setup.py install
28
29
-COPY trdg/ /app
README.md
@@ -25,7 +25,7 @@ If you would rather not have to install anything to use TextRecognitionDataGener
```
docker pull belval/trdg:latest
-docker run /output/path/:/app/out/ -t belval/trdg:latest python3 run.py [args]
+docker run -v /output/path/:/app/out/ -t belval/trdg:latest trdg [args]
30
31
The path (`/output/path/`) must be absolute.
0 commit comments